diff options
109 files changed, 81457 insertions, 10453 deletions
@@ -1,3 +1,247 @@ +Wed Sep 29 15:00:11 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xmlschemas.c include/libxml/xmlerror.h include/libxml/xmlschemas.h + include/libxml/schemasInternals.h: Parsing of <complexContent> + - handle attribute 'mixed', catch illegal attributes. + Parsing of <complexType> - handle attributes 'abstract', + 'final' and 'block', catch illegal attributes. + Validation of complex types - handle abstract types. + Added handling of default/fixed attributes and element values. + Per validation option attribute nodes/text nodes are created + on the instance. + Added the corresponding constraints for fixed/default. + Added xmlSchemaSetValidOptions, xmlSchemaGetValidOptions + to the external API. + Extended element declaration constraints. + Got rid of perseverative creation of temporery validation/parser + contexts. + Added handling of xsi:schemaLocation and + xsi:noNamespaceSchemaLocation. + Fixed xsi:type component resolution if using non-prefixed + QNames. + * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: + Enabled namespace awareness of the content model if using the + model group "all". + * test/schemas/bug152470_1.xsd: Removed an "abstract" attribute, + which broke the test. + * xstc/xstc.py: Workaround to accomodate case insensitive + test definitions in ms-test.def.xml (was missing in a previous + commit). + +Wed Sep 29 11:03:10 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * python/drv_libxml2.py: another patch from Malcolm Tredinnick + adding option not to load dtd from the drv_libxml2.py module + #134633 + +Tue Sep 28 14:30:22 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * acconfig.h config.h.in configure.in xmlIO.c xmlregexp.c xmlschemas.c + xmlschemastypes.c: another patch from Malcolm Tredinnick fixing + warning generated by the Nonstop Kernel Open System Services + compiler #151710 + +Tue Sep 28 13:07:37 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * python/libxml.py: applied patch from Malcolm Tredinnick fixing + python exception hierarchy #139824 + +Sun Sep 26 16:40:24 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * valid.c TODO: applied patch from Malcolm Tredinnick fixing errata + E20 concerning NMTOKENS and co. validation #153722 + * result/VC/AttributeNmtokens test/VC/AttributeNmtokens + test/VCM/AttributeNmtokens.xml: also added tests from Malcolm + +Sun Sep 26 16:24:44 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * xstc/xstc.py: applied patch from Malcolm Tredinnick fixing space/tabs + #153713 + * xpath.c: fixed a realloc potential problem + +Fri Sep 24 16:14:12 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * Makefile.am: fixed make valgrind xstc + +Thu Sep 23 18:23:46 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * xmlschemastypes.c: fixing an out of bound adressing issue + +Thu Sep 23 15:14:12 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * HTMLparser.c parser.c relaxng.c xmlschemas.c: more memory related + code cleanups. + +Thu Sep 23 01:04:30 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * parser.c: fixed a bunch of errors when realloc failed. + +Wed Sep 22 23:56:05 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * threads.c uri.c: couple of memory fixes from Mark Vakoc reported + by Purify on Windows. + +Mon Sep 20 22:01:47 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * xmllint.c: added --timing --copy timing for the copy + * vms/build_libxml.com: applied patch from Craig Berry + to build with recent releases + +Fri Sep 17 21:25:33 PDT 2004 William Brack <wbrack@mmm.com.hk> + + * nanohttp.c, include/libxml/nanohttp.h: added the routine + xmlNanoHTTPContentLength to the external API (bug151968). + * parser.c: fixed unnecessary internal error message (bug152060); + also changed call to strncmp over to xmlStrncmp. + * encoding.c: fixed compilation warning (bug152307). + * tree.c: fixed segfault in xmlCopyPropList (bug152368); fixed + a couple of compilation warnings. + * HTMLtree.c, debugXML.c, xmlmemory.c: fixed a few compilation + warnings; no change to logic. + +Fri Sep 17 10:40:23 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * parser.c: removed some extern before function code reported by + Kjartan Maraas on IRC + * legacy.c: fixed compiling when configuring out the HTML parser + * Makefile.am: added a declaration for CVS_EXTRA_DIST + * HTMLparser.c: beginning of an attempt at cleaning up the construction + of the HTML parser data structures, current data generate a huge + amount of ELF relocations at loading time. + +Fri Sep 17 10:36:23 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * ChangeLog: applied fix from Stepan Kasal to fix duplication + in the change log and cleanup of space/tabs issues. + +Thu Sep 16 13:24:27 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xmlschemas.c include/libxml/schemasInternals.h + test/schemas/bug152470_1.* result/schemas/bug152470_1_1*: + Simpified attribute wildcard creation and assignment to get rid + of memory leaks. + Restructured the validation process. + Restructured and expanded parsing of <attributeGroup>. + Added initial handing of xsi:type. + Advanced handling of xsi:nil (should work now for simple types). + Added construction of schemata using xsi:schemaLocation and + xsi:noNamespaceSchemaLocation; this is not enabled, since + no corresponding API exists yet. + Moved the content model to complex type components. + Resolution of types for attributes will look for simple types + only (incl. all the built-in simple types). + Extended parsing of 'anyAttribute'. + Fixed content-type type for complex types if derived from + 'anyType' using the short-hand form (see bug # 152470, + submitted by Thilo Jeremias). + * include/libxml/xmlschematypes.h: Cleaned up some comments. + * xstc/xstc.py: Workaround to accomodate case insensitive + test definitions in ms-test.def.xml. + * result/schemas/deter0_0_0.err result/schemas/ns0_0_2.err + result/schemas/ns0_1_2.err: Adapted. + +Sat Sep 11 09:04:22 PDT 2004 William Brack <wbrack@mmm.com.hk> + + * xmlwriter.c: changed char array initialisation to avoid a + complaint from some compiler(s) (bug 152308) + +Thu Sep 9 07:22:11 PDT 2004 William Brack <wbrack@mmm.com.hk> + + * encoding.c: applied fixes for the UTF8ToISO8859x transcoding + routine suggested by Mark Itzcovitz + +Wed Sep 8 22:50:27 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * valid.c xmlsave.c: fixed 2 problems raised by #152140, one + which is that notation not in the internal subset should + not be saved, and the second more nasty on an error saving + NOTATIONs, if there is a proof that nobody uses notations ! + +Wed Sep 8 11:04:27 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xmlschemas.c include/libxml/xmlschemas.h: Added the function + xmlSchemaValidateOneElement to the XML Schema validation API, + as proposed by Jeffrey Fink - see bug # 152073. + +Tue Sep 7 11:10:36 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * configure.in doc/Makefile.am xstc/Makefile.am: some cleanup + checking for xmllint and xsltproc in configure.in, fixed + make dist w.r.t. the new xstc subdir. + * doc/*: rebuilt + +Mon Sep 6 16:42:59 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xstc/xstc.py: Changed to finally validate instance documents. + +Mon Sep 6 16:04:01 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * xstc/Makefile.am Makefile.am: integrated to "make valgrind", + heavy ... weight 250MB of VM ! + +Mon Sep 6 14:54:39 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * xstc/Makefile.am xstc/xstc-to-python.xsl xstc/xstc.py Makefile.am: + more cleanup in integrating the xstc testsuite + +Mon Sep 6 13:56:28 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * Makefile.am configure.in xstc/.cvsignore xstc/Makefile.am: + starting to integrate the xstc suite in the normal regression + tests + +Mon Sep 6 13:14:11 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xstc/sun-test-def.xml: The "tsDir" attribute was not + set correctly. + +Mon Sep 6 11:52:50 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * check-xinclude-test-suite.py: when output and expected do not match + exactly run diff to put the differences in the log c.f. #148691 + +Mon Sep 6 11:17:35 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xstc/xstc-to-python.xslt xstc/ms-test-def.xml xstc/nist-test-def.xml + xstc/sun-test-def.xml: Initial release of generation files to + create python test scripts, which will run the W3C XML Schema Test + Collection. The ms-test-def.xml and sun-test-def.xml files + were extracted from the online HTML XSTC results [1], since they did + not exist for the SUN tests, and only partially did exist for the + MS tests. The NIST definition file was created by concatenation + of the existing definition files for each single datatype. + The stylesheet "xstc-to-python.xslt" should be run against the + definition files to produce the python scripts. + [1] "http://www.w3.org/XML/2001/05/xmlschema-test-collection/ + results-master.html" + +Fri Sep 3 20:29:59 CEST 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> + + * xmlschemas.c include/libxml/schemasInternals.h + include/libxml/xmlerror.h: Fixed a seg fault in xmlGetQNameProp: + a format argument was missing. + Fixed wrong assignment of the owner of a wildcard in + xmlSchemaBuildAttributeValidation (in the shorthandform of + <complexType>; this caused a seg fault, due to a double-free + of the wildcard. + Added a check for circular attribute group references. + Added a check for circular model group definition references. + Fixed a dublicate xmlParserErrors enum value - see bug #151738. + +Fri Sep 3 10:08:13 PDT 2004 William Brack <wbrack@mmmm.com.hk> + + * xmlstring.c: modified comments on xmlGetUTF8Char in + response to bug 151760 (no change to logic) + +Tue Aug 31 09:46:18 PDT 2004 William Brack <wbrack@mmm.com.hk> + + * xmlstring.c: fixed error reported on the list caused by + my last change + +Tue Aug 31 15:41:52 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * NEWS configure.in doc/*: release of libxml2-2.6.13 + Tue Aug 31 14:14:30 CEST 2004 Daniel Veillard <daniel@veillard.com> * xmlIO.c: fixing #151456, an encoding error could generate @@ -136,7 +380,7 @@ Sat Aug 21 0:035:10 CET 2004 Kasimier Buchcik <libxml2-cvs@cazic.net> test/schemas/seq-dubl-elem1_0* test/schemas/xml.xsd test/schemas/xsd-list-itemType_0*: Added new tests and missing files. - + Fri Aug 20 18:51:36 CEST 2004 Daniel Veillard <daniel@veillard.com> * Makefile.am configure.in: a bit of cleanup and a extra variable for @@ -200,7 +444,7 @@ Sat Aug 14 18:53:08 MDT 2004 John Fleck <jfleck@inkstain.net> * doc/xmllint.xml, xmllint.html, xmllint.1: add c14n to man page (man, it's hard to keep up with Daniel!) - + Sat Aug 14 18:45:38 MDT 2004 John Fleck <jfleck@inkstain.net> * doc/xmllint.xml, xmllint.html, xmllint.1: @@ -521,7 +765,7 @@ Sun Jun 27 10:02:28 HKT 2004 William Brack <wbrack@mmm.com.hk> * testHTML.c, testSAX.c, xmllint.c: changed the 'fopen' used for --push testing to include the 'rb' param when compiled under Windows. - + Fri Jun 25 13:38:57 HKT 2004 William Brack <wbrack@mmm.com.hk> * uri.c: fixed a problem when base path was "./xxx" @@ -583,7 +827,7 @@ Thu Jun 10 20:57:48 HKT 2004 William Brack <wbrack@mmm.com.hk> * configure.in, xmlmemory.c, globals.c: fixed problem when configuring using --with-thread-alloc - + Wed Jun 9 16:31:24 CEST 2004 Igor Zlatkovic <igor@zlatkovic.com> * win32/configure.js win32/Makefile.* minor changes for the new @@ -755,7 +999,7 @@ Sun May 16 03:18:52 CEST 2004 Daniel Veillard <daniel@veillard.com> Sun May 16 03:06:31 CEST 2004 Daniel Veillard <daniel@veillard.com> * doc/ChangeLog.awk: fixed a couple of problems when parsing - libxslt ChangeLog + libxslt ChangeLog Sat May 15 20:14:21 CEST 2004 Daniel Veillard <daniel@veillard.com> @@ -816,7 +1060,7 @@ Wed May 12 08:21:33 HKT 2004 William Brack <wbrack@mmm.com.hk> misc compilation warning messages. * result/schema/group0_0_0, result/schema/group0_0_0.err: regenerated (now no error reported). - + Tue May 11 11:55:59 CEST 2004 Daniel Veillard <daniel@veillard.com> * xmlIO.c: fix to the fix for #141864 from Paul Elseth @@ -830,7 +1074,7 @@ Tue May 11 23:04:47 HKT 2004 William Brack <wbrack@mmm.com.hk> Kasimier Buchcik. * test/schemas/po1_0.xml, test/schemas/po1_0.xsd: changed test to account for above patch. - + Tue May 11 09:06:53 CEST 2004 Daniel Veillard <daniel@veillard.com> * python/tests/tstLastError.py: better portability fix for f(*args), @@ -1046,7 +1290,7 @@ Fri Apr 2 22:02:24 HKT 2004 William Brack <wbrack@mmm.com.hk> * relaxng.c: fixed problem in xmlRelaxNGCompareNameClasses which was causing check-relaxng-test-suite.py test 351 to fail. - + Fri Apr 2 17:03:48 HKT 2004 William Brack <wbrack@mmm.com.hk> * nanohttp.c: implemented fix for M$ IIS redirect provided @@ -1081,7 +1325,7 @@ Wed Mar 31 09:50:32 HKT 2004 William Brack <wbrack@mmm.com.hk> and RelaxNG * test/xsdtest/xsdtestsuite.xml: added testfile for SchemasPythonTests - + Mon Mar 29 16:56:49 CEST 2004 Daniel Veillard <daniel@veillard.com> * doc/examples/examples.xsl doc/examples/index.html: added @@ -1166,7 +1410,7 @@ Sun Mar 21 19:19:41 HKT 2004 William Brack <wbrack@mmm.com.hk> * relaxng.c: added an error message when an element is not found within a <choice> (bug 126093) - + Sat Mar 20 22:25:18 HKT 2004 William Brack <wbrack@mmm.com.hk> * xmlregexp.c: enhanced the logic of parsing char groups to @@ -1487,7 +1731,7 @@ Tue Feb 10 19:24:38 HKT 2004 William Brack <wbrack@mmm.com.hk> (bug 133773) * nanoftp.c: fixed potential buffer overflow problem, similar to fix just applied to nanohttp.c. - + Mon Feb 9 18:40:21 CET 2004 Igor Zlatkovic <igor@zlatkovic.com> * nanohttp.c: fixed the fix for the buffer overflow, thanx @@ -1572,11 +1816,11 @@ Tue Feb 3 09:21:09 CET 2004 Igor Zlatkovic <igor@zlatkovic.com> Cameron Johnson) * include/libxml/xmlexports.h: fixed mingw+msys compilation (rep by Mikhail Grushinskiy) - + Mon Feb 2 20:22:18 PST 2004 William Brack <wbrack@mmm.com.hk> * xmlwriter.c: enhanced output indenting (bug 133264) - + Mon Feb 2 16:13:33 PST 2004 William Brack <wbrack@mmm.com.hk> * xmlreader.c, include/libxml/xmlreader.h: applied patch from @@ -1822,7 +2066,7 @@ Sun Jan 4 08:57:51 HKT 2004 William Brack <wbrack@mmm.com.hk> * xml2-config.in: added an additional flag (--exec-prefix) to allow library directory to be different from include directory (Bug 129558). - + Fri Jan 2 21:22:18 CET 2004 Daniel Veillard <daniel@veillard.com> * error.c: applied patch from Stéphane Bidoul for structured error @@ -1993,7 +2237,7 @@ Sat Dec 20 10:48:37 HKT 2003 William Brack <wbrack@mmm.com.hk> * globals.c: added comment to suppress documentation warning * doc/apibuild.py: fixed problem which caused last APIchunkxx.html to be lost. Rebuilt doc/* (including adding APIchunk26.html) - + Fri Dec 19 18:24:02 CET 2003 Daniel Veillard <daniel@veillard.com> * xmlreader.c: trying to fix #129692 xmlTextReaderExpand() when @@ -2208,7 +2452,7 @@ Sat Nov 29 18:38:22 HKT 2003 William Brack <wbrack@mmm.com.hk> * xmlmemory.c: enhanced by adding mutex to protect global structures in a multi-threading environment. This fixed some random errors on the Threads regression tests. - + Fri Nov 28 21:39:49 MST 2003 John Fleck <jfleck@inkstain.net> * doc/xml.html doc/python.html: fix tst.py text, which didn't @@ -2223,7 +2467,7 @@ Fri Nov 28 17:28:47 HKT 2003 William Brack <wbrack@mmm.com.hk> BOM on output, and will be automatically recognized on input. * test/utf16lebom.xml, test/utf16bebom.xml, result/utf16?ebom*: added regression tests for above. - + Thu Nov 27 19:25:10 CET 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/Makefile.* win32/configure.js: Modified to allow coexistent @@ -2457,7 +2701,7 @@ Fri Nov 14 15:08:13 HKT 2003 William Brack <wbrack@mmm.com.hk> * tree.c: minor changes to some comments * doc/*.html: rebuilt the generated HTML pages for changes from jfleck (bug 126945) - + Thu Nov 13 12:44:14 CET 2003 Daniel Veillard <daniel@veillard.com> * doc/examples/*: added Dodji's example, added output handling @@ -2512,7 +2756,7 @@ Sun Nov 9 20:28:21 HKT 2003 William Brack <wbrack@mmm.com.hk> python/libxml2class.txt: enhanced for range checking, updated to Unicode version 4.0.1 (API docs also updated) * python/generator.py: minor change to fix a warning - + Wed Nov 5 23:46:36 CET 2003 Daniel Veillard <daniel@veillard.com> * Makefile.am: apply fix from Karl Eichwalder for script path @@ -2854,7 +3098,7 @@ Sun Oct 19 17:33:27 HKT 2003 William Brack <wbrack@mmm.com.hk> * xmlIO.c: fixed segfault when input file not present * tree.c: changed output formatting of XML_CDATA_SECTION (bug 120917) - + Sun Oct 19 00:15:38 HKT 2003 William Brack <wbrack@mmm.com.hk> * include/libxml/parserInternals.h HTMLparser.c HTMLtree.c @@ -3057,7 +3301,7 @@ Wed Oct 8 23:31:23 CEST 2003 Daniel Veillard <daniel@veillard.com> * parser.c: bug in compression saving was crashing galeon reported by teuf - + Wed Oct 8 21:18:12 CEST 2003 Daniel Veillard <daniel@veillard.com> * error.c tree.c xmlIO.c xmllint.c: more cleanup through the @@ -3242,8 +3486,8 @@ Mon Sep 29 15:15:08 CEST 2003 Daniel Veillard <daniel@veillard.com> * HTMLtree.c SAX2.c c14n.c catalog.c configure.in debugXML.c encoding.c entities.c nanoftp.c nanohttp.c parser.c relaxng.c - testAutomata.c testC14N.c testHTML.c testRegexp.c testRelax.c - testSchemas.c testXPath.c threads.c tree.c valid.c xmlIO.c + testAutomata.c testC14N.c testHTML.c testRegexp.c testRelax.c + testSchemas.c testXPath.c threads.c tree.c valid.c xmlIO.c xmlcatalog.c xmllint.c xmlmemory.c xmlreader.c xmlschemas.c example/gjobread.c include/libxml/HTMLtree.h include/libxml/c14n.h include/libxml/catalog.h include/libxml/debugXML.h @@ -3335,7 +3579,7 @@ Fri Sep 26 14:41:53 CEST 2003 Daniel Veillard <daniel@veillard.com> is found within a cdata section. * result/noent/cdata2 result/cdata2 result/cdata2.rdr result/cdata2.sax test/cdata2: add one more cdata test - + Thu Sep 25 23:03:23 CEST 2003 Daniel Veillard <daniel@veillard.com> * parser.c xmllint.c doc/libxml2-api.xml include/libxml/parser.h: @@ -3640,7 +3884,7 @@ Sun Sep 7 19:58:33 PTD 2003 William Brack <wbrack@mmm.com.hk> Sun Sep 7 22:53:06 CEST 2003 Daniel Veillard <daniel@veillard.com> * parser.c: try to cope with the fact that apps may still - have allocated smaller SAX callbak block + have allocated smaller SAX callbak block Sun Sep 7 11:11:45 CEST 2003 Daniel Veillard <daniel@veillard.com> @@ -3736,7 +3980,6 @@ Thu Aug 28 08:59:51 MDT 2003 John Fleck <jfleck@inkstain.net> fix my bad - forgot to check in new files when I last updated - Thu Aug 28 14:31:13 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/Makefile.bcb: new file, support for Borland C++ @@ -3780,7 +4023,7 @@ Tue Aug 26 15:54:04 CEST 2003 Daniel Veillard <daniel@veillard.com> * relaxng.c: fixed bug #120386 again a problem introduced when trying to reuse automata for content validation. Fix a bug report - problem on zeroOrMore + problem on zeroOrMore * result/relaxng/tutor3_7_err: change slightly error reporting. Mon Aug 25 13:24:57 CEST 2003 Daniel Veillard <daniel@veillard.com> @@ -3799,13 +4042,13 @@ Mon Aug 25 12:37:23 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * include/libxml/parserInternals.h include/libxml/relaxng.h include/libxml/SAX.h include/libxml/SAX2.h: realigned the parameters after taint. - + Mon Aug 25 11:16:01 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * include/libxml/xmlversion.h.in: moved export defs to a separate file for consistency. * include/libxml/xmlexports.h: new file, contains export defs. - + Mon Aug 25 11:01:49 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * include/libxml/*.h genUnicode.py: exportability taint @@ -3873,7 +4116,7 @@ Sat Aug 16 22:53:42 HKT 2003 William Brack <wbrack@mmm.com.hk> * doc/parsedecl.py, doc/libxml2-refs.xml, doc/API*.html: fixed part (2) of bug 119535 (wrong alpha case on filenames) - + Sat Aug 16 20:35:28 HKT 2003 William Brack <wbrack@mmm.com.hk> * doc/API*.html, doc/html/*: regenerated API documentation @@ -3886,7 +4129,7 @@ Fri Aug 15 14:58:37 HKT 2003 William Brack <wbrack@mmm.com.hk> improving documentation generation * doc/Makefile.am: further adjustment to auto-generation of win32/libxml2.def.src - + Fri Aug 15 02:24:20 CEST 2003 Daniel Veillard <daniel@veillard.com> * News configure.in: preparing libxml2-2.5.10 release @@ -3948,7 +4191,7 @@ Tue Aug 12 18:55:08 HKT 2003 William Brack <wbrack@mmm.com.hk> using native compiler * doc/Makefile.am: implemented regeneration of win32/libxml2.def.src whenever libxml2-api.xml is changed. - + Mon Aug 11 17:02:23 CEST 2003 Daniel Veillard <daniel@veillard.com> * parser.c: cleaning up a problem when parsing UTF-16 and libiconv @@ -3996,7 +4239,7 @@ Fri Aug 8 18:47:38 HKT 2003 William Brack <wbrack@mmm.com.hk> * win32/defgen.xsl, win32/libxml2.def.src: Bug 119343 (with apologies to Igor) - Enhanced handling of docb and nanohttp. - + Thu Aug 7 21:13:22 HKT 2003 William Brack <wbrack@mmm.com.hk> * encoding.c: further small changes for warnings when @@ -4168,7 +4411,6 @@ Thu Jul 24 15:46:02 MDT 2003 John Fleck <jfleck@inkstain.net> * doc/tutorial/xmltutorial.xml update tutorial with XPath example - Thu Jul 24 17:07:06 IST 2003 Daniel Veillard <daniel@veillard.com> * SAX.c parser.c: fixing a bug about a special case of namespace @@ -4298,7 +4540,7 @@ Sat Jul 5 00:51:30 HKT 2003 William Brack <wbrack@mmm.com.hk> Sat Jun 21 16:10:24 CEST 2003 Daniel Veillard <daniel@veillard.com> - Applying IPv6 patch from Archana Shah <archana.shah@wipro.com> + Applying IPv6 patch from Archana Shah <archana.shah@wipro.com> closing bug #114837 * configure.in: Added checks for IPv6 support and getaddrinfo(). @@ -4387,7 +4629,7 @@ Sat May 17 12:53:11 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * threads.c: applied the patch from Stéphane Bidoul for getting rid of extra threads in a dynamic library. * win32/configure.js: threads default to 'native' now. - + Fri May 16 13:17:52 EDT 2003 Daniel Veillard <daniel@veillard.com> * HTMLtree.c: fixing bug #112904: html output method escaped @@ -4501,14 +4743,14 @@ Mon Apr 28 14:51:41 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/defgen.xsl: fixed the conditional for unicode map, removed hardcoded schema entries - + Mon Apr 28 02:19:00 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/defgen.xsl: new file, stylesheet for generating win32/libxml2.def.src from doc/libxml2-api.xml * win32/libxml2.def.src: is autogenerated from now on, changes to this file will not appear here anymore - + Mon Apr 28 00:12:11 CEST 2003 Daniel Veillard <daniel@veillard.com> * win32/configure.js python/setup.py.in: applied patch @@ -4615,7 +4857,7 @@ Tue Apr 22 15:18:01 CEST 2003 Daniel Veillard <daniel@veillard.com> * HTMLparser.c: tried to fix #98879 again in a more solid way. - + Tue Apr 22 13:58:43 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/libxml2.def.src: added more exports from the relaxng and @@ -4957,7 +5199,7 @@ Sun Mar 23 12:57:00 CET 2003 Daniel Veillard <daniel@veillard.com> * SAX.c include/libxml/parser.h: more checking of the ID/REF stuff, better solution for #107208 * xmlregexp.c: removed a direct printf, dohhh - * xmlreader.c: fixed a bug on streaming validation of empty + * xmlreader.c: fixed a bug on streaming validation of empty elements in entities * result/VC/ElementValid8 test/VCM/v20.xml result/valid/xhtml1.xhtml: cleanup of the validation tests @@ -5230,7 +5472,7 @@ Mon Feb 24 18:14:16 CET 2003 Daniel Veillard <daniel@veillard.com> found 373 test schemas: 369 success 4 failures found 529 test instances: 525 success 4 failures * check-relaxng-test-suite.py: added memory debug reporting - + Mon Feb 24 12:41:54 CET 2003 Daniel Veillard <daniel@veillard.com> * uri.c parser.c: some warning removal on Igor's patch @@ -5300,8 +5542,7 @@ Wed Feb 19 15:39:56 CET 2003 Igor Zlatkovic <igor@zlatkovic.com> * uri.c include/libxml/uri.h: introduced xmlCanonicPath * xmlIO.c include/libxml/xmlIO.h: obsoleted xmlNormalizeWindowsPath * win32/libxml2.def.src: added few exports - - + Wed Feb 19 14:26:51 CET 2003 Daniel Veillard <daniel@veillard.com> * Makefile.am configure.in: patched to have shared libraries @@ -5438,7 +5679,7 @@ Sat Feb 8 18:55:43 CET 2003 Igor Zlatkovic <igor@zlatkovic.com> * win32/Makefile.msvc: updates for RelaxNG * win32/Makefile.mingw: updates for RelaxNG * win32/libxml2.def.src: added RelaxNG exports - + Fri Feb 7 14:00:53 CET 2003 Daniel Veillard <daniel@veillard.com> * xinclude.c: applied another bug fix from Sean Chittenden @@ -5767,7 +6008,7 @@ Tue Jan 14 01:15:04 CET 2003 Daniel Veillard <daniel@veillard.com> Sun Jan 12 22:18:02 CET 2003 Igor Zlatkovic <igor@stud.fh-frankfurt.de> * win32/libxml2.def.src: added more xmlreader and other exports - + Fri Jan 10 18:04:32 CET 2003 Daniel Veillard <daniel@veillard.com> * xpath.c: fix to the XPath implementation for parent and @@ -6058,7 +6299,6 @@ Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net> Add discussion of XML_DEBUG_CATALOG to xmllint man page - bug #100907 - Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com> * xmlreader.c: Fixed the empty node detection to avoid reporting @@ -6104,7753 +6344,7 @@ Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com> Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com> * parser.c: the parseStartTag bug fix wasn't complete. - -Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Vyacheslav Pindyura managed to trigger a bug in - parseStartTag, fixing it. - * test/att4 result/att4 result/noent/att4: adding the test - * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added - more methods to XmlTextReader. - -Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/libxml2.def.src: added more xml reader exports - * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface - to the build - -Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/xmltutorial.xml - plus generated html and pdf - Updating tutorial again based on further comments from Niraj - Tolia on the last iteration - -Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/xmltutorial.xml - * doc/tutorial/includekeyword.c - * doc/tutorial/includegetattribute.c - plus generated html and pdf - Adding fix from Niraj Tolia to tutorial to properly free memory. - - -Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added - more methods of XmlTextReader. - * python/libxml2class.txt python/tests/reader.py: this increased the - methods in the bndings, augmented the test to check those new - functions. - -Sat Dec 14 23:57:39 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c doc/libxml2-api.xml: added the close and getattribute - methods of XmlTextReader. - * python/generator.py python/libxml_wrap.h python/types.c - python/libxml2class.txt: added the reader to the Python bindings - * python/tests/Makefile.am python/tests/reader.py: added a specific - test for the Python bindings of the Reader APIs - * parser.c: small cleanup. - -Fri Dec 13 11:39:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c: fallback was only copying the first child not the - full child list of the fallback element, closes #89684 as reopened - by Bernd Kuemmerlen - -Thu Dec 12 13:34:59 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/libxml2.def.src: exported htmlNodeDumpOutput - -Thu Dec 12 10:59:11 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing release of 2.4.30 - * doc/apibuild.py doc/libxml2-api.xml: fixups to the api builder, - gives enum values, fix functype return type, put back fields in - structs - * doc/*: updated the docs rebuilt - -Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vakoc - about htmlNodeDumpOutput location. - * xpath.c: removed an undefined function signature - * doc/apibuild.py doc/libxml2-api.xml: the script was exporting - too many symbols in the API breaking the python bindings. - Updated with the libxslt/libexslt changes. - -Wed Dec 11 20:26:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing release of 2.4.29 - * doc/*: rebuilt the docs and API - * xmlreader.c: a few more fixes for the XmlTextReader API - -Wed Dec 11 18:01:15 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * include/win32config.h: applied mingw patch from Magnus Henoch - -Wed Dec 11 16:58:48 CET 2002 Daniel Veillard <daniel@veillard.com> - - * catalog.c doc/libxml2-api.xml: a bit more cleanup - -Wed Dec 11 14:54:47 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API - building Python script, does the C parsing directly, generates - a better API description including structure fieds defs and - enums. Still a couple of bugs, but good enough for the python - wrappers now. - * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c - valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c - include/libxml/schemasInternals.h include/libxml/tree.h: more - cleanup based on the python analysis script reports. - * libxml.spec.in: make sure the API XML description is part of the - devel package. - -Tue Dec 10 16:16:34 CET 2002 Daniel Veillard <daniel@veillard.com> - - * DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c - nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c - testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c - xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c: - code cleanup, especially the function comments. - * tree.c: fixed a small bug when freeing nodes which are XInclude ones. - -Mon Dec 9 15:08:17 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am xmlreader.c include/libxml/Makefile.am - include/libxml/xmlreader.h: Adding a new set of APIs based on - the C# TextXmlReader API but converted to C. Allow to parse - in constant memory usage, far simpler to program and explain - than the SAX like APIs, unfinished but working. - * testReader.c: test program - -Sun Dec 8 18:36:01 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/libxml2.def.src: applied YALDSP from Mark Vakoc - -Wed Dec 4 16:08:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: Chip turner indicated that XHTML1 serialization - rule for style actually break on both IE and Mozilla, - try to avoid the rule if escaping ain't necessary - -Wed Dec 4 12:43:28 CET 2002 Daniel Veillard <daniel@veillard.com> - - * nanhttp.c: handle HTTP URL escaping, problem reported by - Glen Nakamura and Stefano Zacchiroli - -Sat Nov 30 12:19:17 CET 2002 Daniel Veillard <daniel@veillard.com> - - * DOCBparser.c HTMLparser.c parser.c valid.c xpath.c: code cleanup - -Thu Nov 28 12:53:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * uri.c: Johann Richard pointed out some XPointer problems for - URN based URI references in XInclude. Modified the URI parsing - and saving routines to allow correct parsing and saving of - XPointers, especially when attached to "opaque" scheme accordingly - to RFC 2396 - -Wed Nov 27 20:36:08 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c include/libxml/HTMLtree.h: applied the same kind - of refactoring to the HTML saving code. - * doc/libxml2-*.xml doc/API*.html: slight API changes got reflected - in the doc. - -Wed Nov 27 12:40:16 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c include/libxml/tree.h: refactored the XML dump of a node - to a buffer API to reuse the generic dump to an OutputIO layer, - this reduces code, fixes xmlNodeDump() for XHTML, also made - xmlNodeDump() now return the number of byte written. - -Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/setup.py.in: another patch from Stéphane Bidoul for - Python bindings on Windows - * doc/parsedecl.py: small cleanup - -Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in configure.in: add a line in %changelog for releases - -Mon Nov 25 14:18:27 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: patch from Marcus Clarke fixing a problem in entities - parsing that was detected in KDe documentations environment. - -Mon Nov 24 14:13:21 CET 2002 ERDI Gergo <cactus@cactus.rulez.org> - - * python/libxml.c (libxml_prev): Return the previous as opposed to - the next node (I guess this is the result of some cut & paste programming:) - -Sat Nov 23 17:22:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile. - -Sat Nov 23 12:21:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/setup.py.in: trying - to fix the Python bindings build on Windows (Stéphane Bidoul) - -Fri Nov 22 22:41:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/configure.js: added option for python bindings - * win32/libxml2.def.src: added more exports - -Fri Nov 22 18:50:34 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/Makefile.mingw: fixed unresolved symbols when linking with - pthreads - * win32/wince/*: applied updates to Windows CE port from Javier - -Fri Nov 22 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.28 - * libxml.spec.in doc/Makefile.am: some cleanup - * doc/*: updated the news and regenerated. - -Fri Nov 22 14:15:14 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: final touch at closing #87235 </p> end tags - need to be generated. - * result/HTML/cf_128.html result/HTML/test2.html result/HTML/test3.html: - this change slightly the output of a few tests - * doc/*: regenerated - -Fri Nov 22 13:26:19 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c: fixing bug #99190 when UTF8 document are - parsed using the progressive parser and the end of the chunk - is in the middle of an UTF8 multibyte character. - -Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk> - - * threads.c: fixed initialization problem in xmlNewGlobalState - which was causing crash. - * globals.c: removed duplicate call to initxmlDefaultSAXHandler - in xmlInitializeGlobalState. - * parserInternals.c: cleaned up ctxt->sax initialisation. - -Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c include/libxml/tree.h: modified the existing APIs - to handle XHTML1 serialization rules automatically, also add - xmlIsXHTML() to libxml2 API. Some tweaking to make sure - libxslt serialization uses it when needed without changing - the library API. - * test/xhtml1 result/noent/xhtml1 result/valid/xhtml1.xhtml - result/xhtml1: added a new test specifically for xhtml1 output - and updated the result of one XHTML1 test - -Wed Nov 20 14:24:56 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c parserInternals.c encoding.c: fixed #99082 - for xi:include encoding="..." support on text includes. - * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml - test/XInclude/ents/isolatin.txt : added a specific regression test - * python/generator.py python/libxml2class.txt: fixed the generator - the new set of comments generated for doc/libxml2-api.xml were - breaking the python generation. - -Tue Nov 19 23:25:47 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/Makefile.am: repair some problem if gtk-doc fail or such - * configure.in: patch for Solaris on new autoconf closes #98880 - * doc/parsedecl.py: repair the frigging API building script, - did I say that python xmllib sucks ? - * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering - and some comment are no more truncated. - -Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Martin Stoilov pointed out a potential leak in - xmlCreateMemoryParserCtxt - -Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: fixed bug #98879 a corner case when 0 is - included in HTML documents and using the push parser. - -Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org> - - * configure.in (PYTHON_SITE_PACKAGES): If --with-python is - specified, look for the Python interpreter not just in the - specified root but also in the specified location. Fixes #98825 - -Sun Nov 17 23:36:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml.c: fixing bug #98792 , node may have no doc - and dereferencing without checking ain't good ... - -Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing release 2.4.27 - * doc/* : updated and rebuilt the docs - * doc/Makefile.am libxml.spec.in: try to make sure the tutorial - and all the docs are actually packaged and in the final RPMs - * parser.c parserInternals.c include/libxml/parser.h: restore - xmllint --recover feature. - -Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c xpath.c: fixing #96925 wich was also dependent on the - processing of parsed entities, and XPath computation on sustitued - entities. - * testXPath.c: make sure entities are substitued. - -Fri Nov 15 16:22:54 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixed #96594, which was totally dependent on the - processing of internal parsed entities, which had to be changed. - -Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am python/Makefile.am python/tests/Makefile.am: - trying to fix bug #98517 about building outside the source tree - * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585 - -Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * include/win32config.h: cleanup - * win32/Makefile.mingw: integrated mingw in JScript configure - * win32/Makefile.msvc: modified to allow mingw coexistence - * win32/configure.js: integrated mingw - * win32/Readme.txt: cleanup - -Tue Nov 12 22:06:45 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: strengthen the guard in the Pop macros, - like in the XML parser, closes bug #97315 - -Tue Nov 12 21:56:39 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/parser.h: fixed bug #98338 , fatalError SAX - callback is never used. - -Tue Nov 12 13:32:50 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c: fixed the initialization of the SAX structure - which was breaking xsltproc - * xpath.c: patch from Petr Pajas for CDATA nodes - * tree.c: patch from Petr Pajas improving xmlGetNodePath() - * parser.c include/libxml/parser.h: patch from Peter Jones - removing a leak in xmlSAXParseMemory() and adding the - function xmlSAXParseMemoryWithData() - -Mon Nov 11 20:47:03 MST 2002 John Fleck <jfleck@inkstain.net> - - adding pdf of tutorial, changing web page to link to it - * doc/tutorial/xmltutorial.pdf - * doc/xml.html - * doc/docs.html - -Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/ar01s08.html - adding file what I forgot for tutorial - - -Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net> - - Adding encoding discussion to tutorial - Added: - * doc/tutorial/images/*.png: DocBook admonition image files - * doc/tutorial/apf.html, apg.html: new generated html - * doc/tutorial/includeconvert.c: conversion code entity file - changed: - * doc/tutorial/xmltutorial.xml: DocBook original - * doc/tutorial/*.html: generated html - -Fri Nov 8 17:59:32 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * include/libxml/*.h: retired xmlwin32version.h - * doc/Makefile.am: retired xmlwin32version.h - * win32/configure.js: retired xmlwin32version.h - -Fri Nov 8 16:55:47 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/libxml2.def.src: exported additional symbols - * include/libxml/xmlmemory.h: exported the rest of the xmlMem* - sisterhood - -Fri Nov 8 16:08:13 CET 2002 Daniel Veillard <daniel@veillard.com> - - * globals.c: fixed a typo pointed out by Igor - * xpath.c: try to speed up node compare using line numbers - if available. - -Thu Nov 7 15:16:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: make xmlFreeNode() handle attributes correctly. - -Wed Nov 6 23:51:11 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * catalog.c: completed the #96963 fix, as reported by Karl - Eichwalder - -Wed Nov 6 16:48:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpointer.c: tried to fix bug #97852 reported by Nicolas Noffke - -Sun Nov 3 10:43:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: switched the order of a couple of includes - to fix bugs #97100 - -Thu Oct 31 17:11:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * catalog.c: fixed bug #96963, reverted to the old behaviour of - xmlLoadCatalogs that used to separate directories with a ':'. - -Thu Oct 31 16:55:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * threads.c: improvements to the Windows-side of thread handling - * testThreads.c: conditionally excluded unistd.h - * testThradsWin32.c: broke overlong lines - * include/win32config.h: adapted thread-related macros to the new - scheme and for pthreads on Windows - * win32/Makefile.msvc: introduced a more flexible thread build, - added testThreads[Win32].c to the build - * win32/configure.js: introduced a more flexible thread config - -2002-10-31 John Fleck <jfleck@inkstain.net> - - * doc/xml.html (and, by implication, FAQ.html) - added UTF-8 conversaion FAQ from Marcus Labib Iskander - -Tue Oct 29 18:32:33 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * configure.in: removed xmlwin32version.h - * include/libxml/Makefile.am: removed xmlwin32version.h - -Mon Oct 28 14:01:29 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: applied patch from Brian Stafford to fix a bug - in xmlReconciliateNs() - -Mon Oct 28 13:51:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: applied patch from Christian Glahn to allow - xmlNewChild() on document fragment nodes - -Sat Oct 26 15:27:00 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Christian Glahn found a problem with a recent - patch to xmlParseBalancedChunkMemoryRecover() - * xmlschemas.c: Charles Bozeman fixed some Schemas validation - problems - * result/schemas/elem* result/schemas/seq* test/schemas.elem* - test/schemas/seq*: added the test cases from Charles - -Wed Oct 23 16:42:29 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am config.h.in libxml.spec.in doc/Makefile.am: - serious cleanup of the spec file and associated changes - in the Makefiles. - * valid.c: try to remove some warnings on x86_64 - -Wed Oct 23 10:53:42 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * include/Makefile.am: added winsockcompat.h to EXTRA_DIST to - fix bug #96586 - -Tue Oct 22 21:13:06 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: Mikhail Sogrine pointed out a bug in HTML - parsing, applied his patch - * result/HTML/attrents.html result/HTML/attrents.html.err - result/HTML/attrents.html.sax test/HTML/attrents.html: - added the test and result case provided by Mikhail Sogrine - -Tue Oct 22 19:33:20 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * vms/build_libxml.com vms/config.vms vms/readme.vms - include/libxml/parser.h include/libxml/parserInternals.h - include/libxml/tree.h include/libxml/xmlIO.h - HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c - tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c: - Applied the VMS update patch from Craig A. Berry - * doc/*.html: update - -Tue Oct 22 16:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/encoding.h encoding.c: made xmlGetUTF8Char public - -Tue Oct 22 16:25:18 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: adding a grep command to --shell in xmllint - for T.V. Raman - -Tue Oct 22 16:23:57 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlcatalog.c: tried to fix some of the problem with --sgml - -Mon Oct 21 09:57:10 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: tried to fix bug #91500 where doc->children may - be overriden by a call to xmlParseBalancedChunkMemory() - -Mon Oct 21 09:04:32 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * catalog.c: tried to fix bug #90945 w.r.t. parsing of system - identifiers in SGML catalogs containing '&' - -Sun Oct 20 23:31:47 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/types.c: fixed bugs when passing result value tree - to Python functions. - -Fri Oct 18 13:18:53 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing the release of 2.4.26 - * doc/*: updated and rebuilt the documentation - -Wed Oct 16 20:01:46 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixed a XML Namespace compliance bug reported by - Alexander Grimalovsky - -Wed Oct 16 17:18:42 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: fixed serialization of script and style when - they are not lowercase (i.e. added using the API to the tree). - -Wed Oct 16 16:31:05 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: make xmlValidateDocument emit a warning msg if there - is no DTD, pointed by Christian Glahn - -Wed Oct 16 16:05:38 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c xmlschemas.c: fixed the validation of sequences - content model when some of the blocks have min or max, and a couple - of bugs found in the process. - * result/schemas/list0* test/schemas/list0*: added some specific - regression tests - -Tue Oct 15 12:41:01 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * README: updated the contact informations - -Tue Oct 15 10:35:57 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: use test -f instead of test -e since Solaris /bin/sh - misses it, reported by Peter Bray. - -Mon Oct 14 17:37:32 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: investigating xmlNodeGetContent() on namespace nodes - and removed a few warnings - -Mon Oct 14 13:12:55 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Christian Glahn found a small bug in the push parser. - * xmlIO.c include/libxml/xmlIO.h: cleaned up and made xmlCheckFilename - public - -Wed Oct 9 23:11:02 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemas.c include/libxml/xmlschemas.h: added - xmlSchemaNewMemParserCtxt to parse a schemas from a memory area - * testSchemas.c: added --memory to test the new interface - -Wed Oct 9 16:22:54 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/index.py doc/search.php: integrated the XSLT indexing, - a few fixed in the indexer, added a scope selection at the - search level. - -Wed Oct 9 12:18:37 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: Joe Marcus Clarke reported a segfault on FBsd - this was due to uninitialized parts of the validation context - -Tue Oct 8 23:24:20 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: applied patch from Mark Vakoc except the API - change, preserved it. - * doc/*: updated the docs to point to the search engine for - information lookup or before bug/help reports. - -Tue Oct 8 18:53:31 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/index.py doc/search.php: added mailing-list archives - indexing and lookup - -Tue Oct 8 10:25:07 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: patch from Mark Vakoc to fix xmlNodeGetPath() - -Mon Oct 7 13:12:03 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/index.py: improved HTML indexing - * doc/search.php: make the queries also lookup the HTML based indexes - -Sun Oct 6 23:50:29 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/index.py: added HTML page indexing - -Fri Oct 4 15:33:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * xmlIO.c: extended Windows path normalisation to fix the base - problem in libxslt. - * catalog.c: fixed list handling in XML_CATALOG_FILES - -Fri Oct 4 13:43:02 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: typo/bug found by Christian Glahn - -Sun Sep 29 19:44:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * xmlIO.c: applied Windows CE patch from Javier. - * win32/wince: new directory, contains support for the PocketPC - with Windows CE from Javier. - * include/win32config.h: reorganised, removed duplicate - definitions and applied WinCE patch from Javier. - * include/wsockcompat.h: new file, now contains WinSock - compatibility macros. - * win32/Makefile.msvc: introduced double-run compilation. - -Thu Sep 26 19:48:06 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing release - of 2.4.25 - * doc/*: updated and regenerated teh docs and web pages. - -Thu Sep 26 17:33:46 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c valid.c include/libxml/valid.h: fixed bug #92518 validation - error were not covering namespace declarations. - * result/valid/dia.xml test/valid/dia.xml: the test wasn't valid, - it was missing the attribute declaration for the namespace - * result/VC/NS3: the fix now report breakages in that test - -Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: fixing bug #94241 on HTML boolean attributes - -Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode - and regenerated the docs and web site - -Thu Sep 26 11:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure - ATTRIBUTE_UNUSED is always put after the attribute declaration, - not before - -Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml2class.txt: fixed a stupid error - breaking the python API - -Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * trio.c trio.h triodef.h trionan.c trionan.h triop.h - triostr.c triostr.h: applied a trio update patch from - Bjorn Reese which should work with MinGW - -Thu Sep 26 00:21:18 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: improving some documentation comments - * xmlregexp.c: found and fixed a mem leak with python regression tests - * doc/*: rebuilt the doc and the API XML file including the - xmlregexp.h xmlautomata.h and xmlunicode.h headers - * python/generator.py python/libxml2class.txt python/libxml_wrap.h - python/types.c: added access to the XML Schemas regexps from - python - * python/tests/Makefile.am python/tests/regexp.py: added a - simple regexp bindings test - -Tue Sep 24 08:10:48 MDT 2002 John Fleck <jfleck@inkstain.net> - - * doc/xml.html: - fixing ftp links - thanks to Vitaly Ostanin - -Tue Sep 24 16:08:17 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c: fixed the data callback on transition functionality - which was broken when using the compact form - * result/schemas/*: updated the results, less verbose, all tests - pass like before - * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c - testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c - xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of - annoying warnings - * xpath.c: try to provide better error report when possible - -Sat Sep 21 14:56:37 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: fixed a breakage raised by Jacob - -Fri Sep 20 20:08:18 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * include/win32config.h: added HAVE_ERRNO_H definition for parts - which don't use sockets - -Fri Sep 20 18:40:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/Makefile.msvc: applied zlib patch from Daniel Gehriger - * win32/configure.js: applied zlib patch from Daniel Gehriger - -Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/configure.js: applied the patch from Mark Vakoc for - regexp support - * win32/libxml2.def.src: applied the patch from Mark Vakoc - for regexp support - -Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemastypes.c: as pointed by Igor Float and Double - parsing ain't finished yet - -Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am configure.in: trying to fix #88412 by bypassing - all the python subdir if python ain't detected - -Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am configure.in include/libxml/xmlversion.h.in: - made configuring with regexps/automata/unicode the default - but without schemas ATM - * testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h: - fixed the regexp based DTD validation performance and memory - problem by switching to a compact form for determinist regexps - and detecting the determinism property in the process. Seems - as fast as the old DTD validation specific engine :-) despite - the regexp built and compaction process. - -Wed Sep 18 18:27:26 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: determinism is debugged, new DTD checking code now works - but xmlFAComputesDeterminism takes far too much CPU and the whole - set usues too much memory to be really usable as-is - -Wed Sep 18 00:54:30 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: fixed another stupid bug in xmlGetNodePath() - * xmllint.c: --version now report the options compiled in - -Tue Sep 17 23:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: small cleanup - * valid.c xmlregexp.c: switched DTD validation to use only regexp - when configured with them. A bit of debugging around the determinism - checks is still needed - -Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com - -Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: small portability glitch fixed. - -Mon Sep 17 12:38:08 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemastypes.c: incomplete steps for real/double support - * testAutomata.c include/libxml/xmlautomata.h - include/libxml/xmlregexp.h: avoiding a compilation problem - * valid.c include/libxml/valid.h: starting the work toward using - the regexps for actual DTD validation - -Fri Sep 13 16:46:14 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * hash.c: cosmetic cleanup - * valid.c include/libxml/tree.h include/libxml/valid.h: started - integrating a DTD validation layer based on the regexps - -Thu Sep 12 18:01:29 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c xmlschemas.c: fixed a bug reported by Jeff Goff, - the determinism was tested before eliminating the epsilon - transitions :-( - -Thu Sep 12 16:57:45 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/libxml.py - python/libxml2-python-api.xml python/libxml2class.txt - python/libxml_wrap.h python/types.c: updated the python - bindings, added code for easier File I/O, and the ability to - define a resolver from Python fixing bug #91635 - * python/tests/Makefile.am python/tests/inbuf.py - python/tests/outbuf.py python/tests/pushSAXhtml.py - python/tests/resolver.py python/tests/serialize.py: updated - and augmented the set of Python tests. - -Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/configure.js: added more readme info for the binary - package. - -Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: fixed a stupid out of bound array error - -Tue Sep 10 13:09:14 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlIO.h xmlIO.c parser.c HTMLparser.c DOCBparser.c: - messing around with support for Windows path, cleanups, - trying to identify and fix the various code path to the - filename access. Added xmlNormalizeWindowsPath() - -Thu Sep 5 16:19:18 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * error.c valid.c: working on better error reporting of validity - errors, especially providing an accurate context. - * result/valid/xlink.xml.err result/valid/rss.xml.err: better - error reports in those cases. - -Thu Sep 5 13:29:47 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * DOCBparser.c HTMLparser.c c14n.c entities.c list.c - parser.c parserInternals.c xmlIO.c: get rid of all the - perror() calls made in the library execution paths. This - should fix both #92059 and #92385 - -Thu Sep 5 13:13:17 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: memory leak reporting was broken after a change - of the preprocessor symbol used to activate it. - -Thu Sep 5 13:10:57 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: try to make the copy function work for node of - type XML_DOCUMENT_FRAG_NODE, they are only created by the - DOM layers though, not libxml2 itself. - -Thu Sep 5 12:57:38 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: try to provide file and line informations, not all - messages are covered, but it's a (good) start - -Thu Sep 5 12:49:35 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c: reimplemented a large part of the XInclude - processor, trying to minimize resources used, James Henstridge - provided a huge test case which was exhibiting severe memory - consumption problems. - -Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am: applied patch from Christophe Merlet to - reestablish DESTDIR - -Wed Sep 4 14:13:34 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in: fixes libary path for x86_64 AMD - -Tue Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/includekeyword.c - * doc/tutorial/xmltutorial.xml: - (plus resulting generated html files) - fixing one spot I missed in the tutorial where I hadn't freed - memory properly - -Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/includeaddattribute.c - * doc/tutorial/includeaddkeyword.c - * doc/tutorial/includegetattribute.c - * doc/tutorial/includekeyword.c - * doc/tutorial/xmltutorial.xml - * doc/tutorial/*.html: - update tutorial to properly free memory (thanks to Christopher - R. Harris for pointing out that this needs to be done) - * doc/tutorial/images/callouts/*.png: - added image files so the callouts are graphical, making it - easier to read ( use "--param callout.graphics 1" to generate - html with graphical callouts) - -Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif: - nice logos generated by Marc Liyanage - * doc/site.xsl *.html: changed the stylesheet to show the new - logo and regenerated the pages - -Sun Aug 25 16:38:05 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: handle Windows sepecific file://localhost/ semantic ... - -Thu Aug 22 22:03:19 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: possible mem leak patch from Jason Adams - -Thu Aug 22 17:27:30 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: integrated xf:escape-uri() from Wesley Terpstra - in the XQuery namespace - * configure.in: preparing 2.4.24 - * doc/*.html: updated the web pages - -Thu Aug 22 16:19:42 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py: closing bug #85258 by generating conditional - compile check to avoid linking to routines not configured in. - -2002-08-22 Havoc Pennington <hp@pobox.com> - - * autogen.sh: update error message for missing automake - -Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am: typo in target name resulted in libxml2.py - to not be rebuilt. fixed DESTDIR similary to the libxslt one. - -Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * win32/win32/Makefile.mingw: updated with version from - Elizabeth Barham at http://soggytrousers.net/repository/ - -Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/Makefile.msvc: added the prefix location to the include - and lib search path. - -2002-08-18 Havoc Pennington <hp@pobox.com> - - * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with - both automake 1.6 and 1.4 installed get the right automake. Means - compilation from CVS will now require the latest automake 1.4 - release, or manually creating symlinks called "automake-1.4" and - "aclocal-1.4" - -Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in python/Makefile.am: more AMD 64 induced changes from - Frederic Crozat - -Wed Aug 14 16:43:53 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c: oops I was missing the xml:base fixup too - * result/XInclude/*.xml: this adds xml:base attributes to most - results of the tests - -Wed Aug 14 16:05:37 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xinclude.c: quick but apparently working implementation of - xi:fallback, should close bug #89684 - * Makefile.am test/XInclude/docs/fallback.xml - result/XInclude/fallback.xml: added a basic test for fallback, - and run with --nowarning to avoid a spurious warning - * configure.in: applied patch from Frederic Crozat for python - bindings on AMD 64bits machines. - -Wed Aug 14 10:47:46 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: xmlSAXUserParseMemory() really ought to fail if - the caller don't pass a SAX callback block. - -Wed Aug 14 10:29:02 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: applied the same fix for the XML-1.0 namespace to - xmlSearchNsByHref() as was done for xmlSearchNs() - -Mon Aug 12 16:52:08 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.3: small cleanup of the man page - * HTMLtree.c: fixed a potential problem raised by Petr Vandrovec - when serializing HREF attributes generated by XSLT. - -Mon Aug 12 15:24:05 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c include/libxml/HTMLtree.h: integrated a cleaned up - version of Marc Liyanage' patch for boolean attributes in HTML - output - -Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/tests/serialize.py: fixed the test results, indenting - behaviour changed slightly - -Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com> - - * win32/dsp/libxml2.def.src win32/libxml2.def.src: added - new c14n function to Windows def files - -Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com> - - * c14n.c: fixed a memory leak in c14n code - -Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c include/libxml/parser.h: adding a new API for Christian - Glahn: xmlParseBalancedChunkMemoryRecover - * valid.c: patch from Rick Jones for some grammar cleanup in - validation messages - * result/VC/* result/valid/*: this slightly change some of the - regression tests outputs - -Thu Aug 1 14:50:28 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: trying to fix a problem in namespaced attribute handling - raised by Christian Glahn - -Thu Aug 1 12:17:30 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * encoding.c include/libxml/encoding.h: Opening the interface - xmlNewCharEncodingHandler as requested in #89415 - * python/generator.py python/setup.py.in: applied cleanup - patches from Marc-Andre Lemburg - * tree.c: fixing bug #89332 on a specific case of loosing - the XML-1.0 namespace on xml:xxx attributes - -Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com> - - * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces - corner case from new Merlin's test suite and added a callback - that will be used to improve xmlsec performance - - -Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: trying to fix the <style> escaping problem in - HTML serialization bug #89342 - -Thu Jul 25 01:33:47 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/xml.html doc/*.html: applied syntax patch from Rick Jones - and rebuilt the web site. - -Mon Jul 22 11:04:48 PDT 2002 Aleksey Sanin <aleksey@aleksey.com> - - * include/libxml/tree.h: added _private member to xmlNs struct - -Sun Jul 21 17:48:47 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: fixing bug #84876 based on the xml working - code. - -Sun Jul 21 19:15:00 HKT 2002 William Brack <wbrack@mmm.com.hk> - - * python/Makefile.am: enhanced to fix bug 72012 (errors - when using '-jX' make parameter) - -Fri Jul 19 16:35:00 HKT 2002 William Brack <wbrack@mmm.com.hk> - - * xpath.c: small additional enhancement for booleans - compared to nodesets - -Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: changed the order of the encoding declaration - attributes in the meta tags due to a bug in IE/Mac - -Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk> - - * xpath.c: enhanced handling of booleans (especially '=' - and '!=' for nodesets) - fixes bug 85256. Added new - routine xmlXPathNotEqualValues for more proper handling - of '!=' when nodesets are involved. - -Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * doc/Makefile.am: fixing Red Hat bug #68614 by adding the - doc/xmlcatalog_man.xml to the source distribution - -Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/Makefile.msvc: Added a copy *.pdb to install, few have - asked for this. - -Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.23 - * doc/*: rebuilt the docs - -Sat Jul 6 21:11:20 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixing bug #84169 by fixing the - comment of xmlCreatePushParserCtxt to describe the - encoding detection parameters better. - -Sat Jul 6 19:44:56 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: fixing bug #79331 in one path the lookup for - ID attributes on a namespaced node wasn't handled correctly :-\ - -Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: trying to fix 87235 about discarded white - spaces in the HTML parser. - * result/HTML/*: this changes the output of a number of HTML - regression tests - -Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: applied patch from Richard Jinks for the namespace - axis + fixed a memory error. - * parser.c parserInternals.c: applied patches from Peter Jacobi - removing ctxt->token for good. - * xmlschemas.c xmlschemastypes.c: fixed a few memory leaks - popped out by the regression tests. - * Makefile.am: patch for threads makefile from Gary Pennington - -Fri Jun 28 19:38:00 HKT 2002 William Brack <wbrack@mmm.com.hk> - - * xpath.c: enhanced behaviour of position() after usage of - expressions involving preceding-sibling (et al). - -Tue Jun 18 09:58:48 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * hash.c: applied a patch from Peter Jacobi to solve a problem - when compiling with the Watcom C on Win32 - * result/schemas/*.err: the change of hashing algo generated - permutations in the output - -Mon Jun 17 19:02:49 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * hash.c: applied patch from Sander Vesik improving the quality of - the hash function. - -2002-06-14 Aleksey Sanin <aleksey@aleksey.com> - - * DOCBparser.c HTMLparser.c debugXML.c encoding.c - nanoftp.c nanohttp.c parser.c tree.c uri.c xmlIO.c - xmllint.c xpath.c: replaced sprintf() with snprintf() - to prevent possible buffer overflow (the bug was pointed - out by Anju Premachandran) - -Thu Jun 13 17:30:25 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: removed an uninitialized data error popped by valgrind - on PE references - -Wed Jun 12 21:38:46 MDT 2002 John Fleck <jfleck@inkstain.net> - - * doc/xml.html - adding tutorial reference to the web page - -Wed Jun 12 21:26:08 MDT 2002 John Fleck <jfleck@inkstain.net> - - * doc/tutorial/xmltutorial.xml - * doc/tutorial/ar01s07.html - * doc/tutorial/ape.html - * doc/tutorial/includegetattribute.c - adding section to tutorial about retrieving an attribute - value - -Tue Jun 11 12:07:04 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: applied a couple of patches from Peter Jacobi to start - to get rid of ctxt->token, with a possible significant speed - improvement to be gained once done. Better compliance with PE - references constructs in DTDs too. - * test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests - from Peter too - -Tue Jun 11 09:25:12 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Babak Vahedipour-Kunze reported that openTag in - xmlParseElement was likely to have been deallocated at the - time of the report, possibly leading to segfault. Just report - the tag name now. - -Mon Jun 10 18:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: patch from Richard Jinks for XPath substring() function - * result/XPath/expr/strings test/XPath/expr/strings: new set of tests - -2002-06-06 Aleksey Sanin <aleksey@aleksey.com> - - * xmlIO.c: patch from Rachel Hestilow to fix bug #84340 - -Wed Jun 5 19:14:49 MDT 2002 John Fleck <jfleck@inkstain.net> - - *doc/FAQ.html - fixing typos in FAQ, thanks to Robert Funnell for the - editing help - -Wed Jun 5 14:50:24 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * NEWS: got complaints from rpmlint that it was empty - -Tue Jun 4 09:09:18 MDT 2002 John Fleck <jfleck@inkstain.net> - - * added doc/tutorial, including: - apa.html - apb.html - apc.html - apd.html - ar01s02.html - ar01s03.html - ar01s04.html - ar01s05.html - ar01s06.html - includeaddattribute.c - includeaddkeyword.c - includekeyword.c - includestory.xml - index.html - xmltutorial.xml - libxml tutorial, including generated html - -Mon Jun 3 21:21:26 2002 Aleksey Sanin <aleksey@aleksey.com> - - * result/c14n/exc-without-comments/merlin-c14n-two-* - result/c14n/without-comments/merlin-c14n-two-* - test/c14n/exc-without-comments/merlin-c14n-two-* - test/c14n/without-comments/merlin-c14n-two-* - testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for - c14n/exc-c14n and slightly modified test script to handle - these test cases - * c14n.c: fixed bugs for complicated nodes set (namespace - without node and others from merlin-c14n-two.tar.gz) - * include/libxml/xpathInternals.h win32/dsp/libxml2.def.src - win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function - for xmlsec performance patch - * xpath.c: fixed self::node() for namespaces and attributes - -Mon Jun 03 00:04:21 2002 Chema Celorio <chema@ximian.com> - - * tree.h: added xmlDocFormatDump which is just as xmlDocDump - but with the format parameter - * tree.c: made xmlDocDump a wrapper arround xmlDocFormatDump - -Fri May 31 12:16:48 2002 Aleksey Sanin <aleksey@aleksey.com> - - * Makefile.am: updated c14n tests suite - * c14n.c: performance improvement for previous c14n patch - -Fri May 31 11:47:12 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: another peroformance patch from Peter Jacobi, that - time on parsing attribute values. - -Thu May 30 23:34:27 2002 Aleksey Sanin <aleksey@aleksey.com> - - * Makefile.am result/c14n/* test/c14n/*: C14N tests integrated - into LibXML2 test suite - -Thu May 30 21:23:06 2002 Aleksey Sanin <aleksey@aleksey.com> - - * c14n.c: propagating xpath ancesstors node fix to c14n - plus small performance improvement to reduce number of - mallocs - * xpath.c: fixed ancestors axis processing for namespace nodes - -Wed May 29 10:21:39 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c parser.c tree.c include/libxml/tree.h: performance patch from - Peter Jacobi - -Mon May 27 23:18:33 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.22 - -Mon May 27 16:44:04 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c win32/libxml2.def.src win32/dsp/libxml2.def.src - include/libxml/HTMLparser.h: fixing #79334 making htmlParseDocument - a public entry point. - * doc/*: rebuilt the API and docs - -Mon May 27 14:16:28 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: patch from Richard Jinks to fix a problem introduced - in the previous patch and pointed by Norm - -Fri May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in: fixing bug #81112 - -Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * uri.c: fixing bug #82848 - -Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * result/catalogs/mycatalog.full: Aleksey's commit changed the - output of one catalog test - -Fri 24 May 2002 12:17:45 AM PDT Aleksey Sanin <aleksey@aleksey.com> - - * global.data globals.c tree.c include/libxml/globals.h - win32/libxml2.def.src win32/dsp/libxml2.def.src: changed - default value for global parameter xmlIndentTreeOutput to 1 and - introduced new global parameter xmlTreeIndentString (the string - used to do one-level indent) with default value " " (as it was - in tree.c) - -Thu May 23 13:55:57 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: Merijn Broeren pointed out a problem when compiling - with trio and schemas. - -Wed May 22 11:57:49 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: patch from Richard Jinks to fix the problem raised in - http://mail.gnome.org/archives/xml/2002-April/msg00246.htm - -Wed May 22 08:38:19 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemas.c: a bit of work on import. - * xmlschemastypes.c: Charles Bozeman provided a compare function - for date/time types so min/max facet restrictions should work, - indeterminate comparisons return an error instead of equal. - * test/schemas/date_0* result/schemas/date_0_0: specific test - from Charles Bozeman too - -Sat May 18 09:54:12 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.3 doc/buildDocBookCatalog: apply a couple of patches - from Christian Cornelssen fixing the man pages and the Catalog - building script. - * xmlschemas.c include/libxml/schemasInternals.h: nothing new yet - next step is <xs:import> I now have a reasonable understanding - of how it works. - -Thu May 16 10:43:26 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: applied a small buffer performance patch from Gary Pennington - -Wed May 15 00:25:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/libxml2.def.src: exported xmlXPathNodeSetAddNs() - -Tue May 14 13:00:48 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixing an XPath function evalutation bug pointed out - by Alexey Efimov where the context was lost when evaluating - the function arguments - -Mon 13 May 2002 11:37:39 PM PDT Aleksey Sanin <aleksey@aleksey.com> - - * xpath.c include/libxml/xpathInternals.h: maked xmlXPathNodeSetAddNs() - function public for XMLSec performance optimizations - -Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml2class.txt : fixed a problem - with the HTML parser pointed by Gary Benson - * python/tests/Makefile.am python/tests/pushSAXhtml.py: sdding the - example - -Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com> - * parser.c: fixed bug #81159 (memory growth in SAX) - -Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com> - * xpath.c: fixed bug #78858 (the real fix) - -Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com> - * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem) - -Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: modified xmlNodeSetBase to allow changing the - base of a document. - -Fri May 3 09:20:41 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemastypes.c: patch Charles Bozeman for validation of - all the date, time, and duration types - * test/schemas/dur_0* result/schemas/dur_0*: associated tests - * configure.in: fixed an error pointed by an user - * xml2-config.in: fixed an error pointed by an user - -Wed 01 May 2002 11:29:27 AM PDT Aleksey Sanin <aleksey@aleksey.com> - - * include/libxml/xmlIO.h win32/dsp/libxml2.def.src - win32/libxml2.def.src xmlIO.c: exported default - 'file:', 'http:' and 'ftp:' protocols input handlers - and maked protocols comparisson case insensitive - -Tue Apr 30 16:29:05 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: Neven Has detected a typo - -Tue Apr 30 08:48:11 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * AUTHORS HACKING: added Aleksey Sanin <aleksey@aleksey.com> - as one of the persons allowed to commit directly to the - module. - -Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing 2.4.21 - * valid.c: raised a too low limit - * doc/*: rebuilt the docs - -Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * test/XPath/expr/floats test/XPath/expr/functions - result/XPath/expr/floats result/XPath/expr/functions - xpath.c: another XPath conformance patch from Richard Jinks - -Tue Apr 23 19:50:40 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemas.c: fixed validation of attribute groups. - * test/schemas result/schemas: added an example from the primer - -Tue Apr 23 09:11:37 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas - * test/schemas result/schemas: updated the test list - -Mon Apr 22 17:59:14 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * TODO: updated a bit - * parser.c: made a comment more specific - * xmlregexp.c xmlschemas.c xmlschemastypes.c: more work on the - Schemas conformance. - * test/schemas result/schemas: updated the test list - -Sat Apr 20 19:36:39 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: - implementing xs:all with minOccurs = 0 - * tes/schemas/* result/schemas/*: added more tests covering - xs:all - -Sat Apr 20 09:22:50 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c: first implementation of the all particle, this - may need to be revisited for case where not all transitions - must be crossed. - -Fri Apr 19 18:26:04 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: another entity processing update from Markus Henke - -Fri Apr 19 17:14:24 CEST 2002 Bjorn Reese <breese@users.sourceforge.net> - - * trionan.c: fixed crash on OSF/1 - -Fri Apr 19 09:00:56 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemas.c: more Schemas work - * test/schemas/* result/schemas/*: added more tests coming - from the spec. - -Thu Apr 18 23:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: patch from Aleksey Sanin reflecting a change in the - ExcC14N specification - -Thu Apr 18 18:38:30 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: patch from Markus Henke, fix for recursive entities. - -Thu Apr 18 17:49:24 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fix a problem with string() on a document node. - -Thu Apr 18 16:40:42 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am xmlschemas.c: more Schemas work - * test/schemas/* result/schemas/*: added more tests coming - from the spec. - -Thu Apr 18 13:52:52 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: fixed & serialization bug introduced in 2.4.20 - * result/HTML/*: this changes a few things in the results - -Wed Apr 17 20:34:37 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * include/libxml/tree.h: eliminated 'declaration different than - prototype' warning - * include/win32config.h: "resolved" conflicts with errno.h - -Wed Apr 17 18:26:07 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: more work - on the automata interfaces and debug of counted choices - * test/schemas/* result/schemas/*: added a number of tests - -Wed Apr 17 11:03:03 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h: - a bit of work on Schemas - * testSchemas.c: try to make it more useful - * test/schemas/* result/schemas/* Makefile.am: changed the - Schemas regression test procedure, started adding a few samples - -Tue Apr 16 19:52:01 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de> - - * include/libxml/encoding.h: Patch for the Borland C++ builder - * include/libxml/tree.h: Patch for the Borland C++ builder - * threads.c: Patch for the Borland C++ builder - * win32/bcb5: New directory for the Borland C++ builder - project files - -Tue Apr 16 19:46:55 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de> - - * win32/Makefile.msvc: Update for XML Schema support - * win32/configure.js: Update for XML Schema support - * win32/libxml2.def.src: Update for XML Schema support - -Tue Apr 16 17:46:43 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c - testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c - xmlunicode.c include/libxml/Makefile.am - include/libxml/schemasInternals.h include/libxml/xmlautomata.h - include/libxml/xmlregexp.h include/libxml/xmlschemas.h - include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h - include/libxml/xmlversion.h.in : merged the current state of - XML Schemas implementation, it is not configured in by default, - a specific --schemas configure option has been added. - * test/automata test/regexp test/schemas Makefile.am - result/automata result/regexp result/schemas: - merged automata/regexp/schemas regression tests - -Tue Apr 16 09:48:44 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: Gary found a compile time problem, fixes #78823 - -Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: release of 2.4.20 - * doc/*: updated and rebuilt the docs - -Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am: patch from Cristian Gafton to build on - Red Hat 6.2, should also fix #75779 - -Mon Apr 15 12:14:49 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: first part of fixing #78729 - -Sun Apr 14 23:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c uri.c: fixing bug #78662 i.e. add proper - escaping of URI when saving HTML files. - * result/HTML/*: this impacted some tests - -Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: trying to fix #77441 - -Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlIO.h: Hallski complained it could not be - included by itself. - -Thu Apr 11 10:23:36 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: applied an IEEE flag patch for OSF/1 #77825 - -Wed Apr 10 23:31:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - - * win32/configure.js: patch from Nilo for the c14n option - * win32/Makefile.msvc: fixed libxml2.def generation with threads - -Wed Apr 10 21:24:16 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c include/libxml/xmlwin32version.h.in: Silvan Minghetti - pointed erroneous use of LIBXML_THREADS_ENABLED instead of - LIBXML_THREAD_ENABLED - -Wed Apr 10 18:12:52 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: another patch from Richard Jinks for substring conformance - * test/XPath/expr/floats test/XPath/expr/strings - result/XPath/expr/floats result/XPath/expr/strings: update of the - test suite to check those. - -Wed Apr 10 13:29:49 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: patch from Richard Jinks for .x float parsing. - -Tue Apr 9 18:09:31 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: patch from Markus Henke when an encoding ain't recognized - -Tue Apr 9 15:47:14 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.m4: got a report that #include <string.h> was needed - -Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: applied a fix from Anthony Jones for -o /--output - -Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net> - - * doc/example.html: fixing typo - -Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixed a bug in the nodeset to boolean comparison code - pointed out by Melvyn Sopacua. - -Fri Mar 29 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.m4: Frédéric Crozat gave a patch related to the change - of Include paths breaking the libxml.m4 - -Fri Mar 29 18:25:54 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: Fix bug #76927 forgot to save some context - when evaluating binary expressions - -Thu Mar 28 19:22:48 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: fixed configure for MPE/iX from Markus Henke - * xmlmemory.c: fixed initialization problems - * xpath.c: another set of patches from Richard Jinks this - fixes "make XPathtests" on linux - -Wed Mar 27 17:09:43 CET 2002 Daniel Veillard <daniel@veillard.com> - - * trionan.c trionan.h xpath.c: more patches from Richard Jinks - * test/XPath/expr/compare test/XPath/expr/equality - test/XPath/expr/floats test/XPath/expr/functions - test/XPath/expr/strings result/XPath/expr/compare - result/XPath/expr/equality result/XPath/expr/floats - result/XPath/expr/functions result/XPath/expr/strings: Updated - tests though they show a divergence on Linux - -Wed Mar 27 10:06:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c trionan.c: previous commit also included patches - from Richard Jinks on some IEEE support corner case - -Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com> - - * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer - * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed - that $(datadir) should be used for docs - -Tue Mar 26 13:43:16 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: Thomas Steinborn pointed out #76404 that libxml2 - could leak filedescriptors - -Tue Mar 26 08:55:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in nanohttp.c: applied patch from Allan Clark for - UnixWare/OpenServer - -Mon Mar 25 17:45:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.19 - * doc/*: rebuilt the docs - -Mon Mar 25 17:34:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * nanohttp.c: fixing #76043, got fed up with non-portability - of that piece of code. - -Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c SAX.c: Never commit without running "make tests" :-( - fix a couple of stupidities in the previous commit - * result/*: a few changes in some attribute order result of previous - commit. - -Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c SAX.c: fixed bug #76168, attribute redeclared in - the internal subset should not raise duplicate ID errors, - also there was a small bug in conjunction to namespace - declarations defaulted and xml:xxx attributes DTD definitions. - -Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: Richard Jinks also raised some rounding problems - this tries to fix them - -Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: Richard Jinks spotted an incoherent memory allocation - behaviour in xmlXPathCastToString() - -Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com> - - * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder - raised by Morus Walter - -Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups - from Igor - -Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixing #75619, related to a problem when trying - to evaluate condition when the current node set resulting - from that sub-step evaluation is empty. Also fixes 2 potential - problem with previous-sibling and next-siblings axis. - -Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: patch from Mark Vakoc to build C14N if DocBook and - HTML support is not configured in. - -Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c - include/libxml/tree.h: dohh I really didn't intended to commit - this test version :-( - -Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com> - - * testSAX.c: I wanted to see the real speed at the SAX interface - after a little too many Ximianer started complaining about the - parser speed. - added a --quiet option: - paphio:~/XML -> ls -l db100000.xml - -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml - paphio:~/XML -> time ./testSAX --quiet db100000.xml - 3200006 callbacks generated - real 0m1.270s - Which means 16MBytes/s and 3Mcallback/s - -Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: valgrind spotted another error that time when running - on libxslt regression tests - -Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: adding "make valgrind" running the full regression - tests (except python ones) under Valgrind (using valgrind -q - which was kindly added by the author). - * valid.c: stupid bug pinpointed by Valgrind, the regression tests - passes cleanly now except an obcure floating point initialization - raised in log10() in one XPath regression test ??? - * tree.c: edited some comments to close #75244 - -Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: pretty insane thing, the xmlXPathFormatNumber() - was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the - context of ScrollKeeper, made sure that if the number is - an integer, the serialization follows the description at - http://www.w3.org/TR/xpath#section-String-Functions - -Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.18 - * doc/*: updated and rebuilt the web site - * *.c libxml.h: implement the new IN_LIBXML scheme discussed with - the Windows and Cygwin maintainers. - * parser.c: humm, changed the way the SAX parser work when - xmlSubstituteEntitiesDefault(1) is set, it will then - do the entity registration and loading by itself in case the - user provided SAX getEntity() returns NULL. - * testSAX.c: added --noent to test the behaviour. - -Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Wilfried Teiken provided a hackish but working - way to get context reported back on entities when parsing - with SAX and without breaking the DOM build. - -Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: applied a new patch from Aleksey Sanin - * doc/site.xsl doc/xml.html doc/*.html: updated the documentation - to reference Aleksey implementation of XML digital Signatures - -Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: small fix to avoid potential problem due to - ordering of freeing data - * python/Makefile.am: people were complaining about - the generated file in python dir not being built - -Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in python/Makefile.am python/tests/Makefile.am - python/generator.py python/libxml.c python/types.c: Cleanup - of the python Makefiles based on Jacob and James feedback, - fixed the spec file accordingly, fixed the number of warning - that passing my pedantic CFLAGS was generating. Conclusion - is that Python includes are real crap. - -Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure,in: it was reported quite a few times that - xml2-config --cflags should not output - -I$includeprefix/libxml2/libxml because libxml2 header names - clashes with existing names like list.h from C++ stl. - Includes should be #include<libxml/xxx.h> so ... - -Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: another patch from Aleksey Sanin - -Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: applied patch from Aleksey Sanin fixing a problem in the - canonicalization algorithm - * doc/xml.html doc/index.html: added the C14N references on the - index page. - -2002-03-13 jacob berkman <jacob@ximian.com> - - * python/Makefile.am: remove LDADD and CFLAGS as this is broken - usage, redundant, and gcc specific - -Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: speedup some node selection operations, this can - have a significant impact on DocBook Norm's stylesheets - * nanohttp.c: someone reported that SOCKLEN_T may not be defined - make sure it's always the case - * debugXML.c: distinguish CDATA and comments in ls operations - -Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments - to generate better API descriptions etc... - -Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: Fixing #74186, made sure all boolean expressions - get fully parenthesized, ran indent on the output - * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c - include/libxml/tree.h: also #74186 related, removed the - --with-buffers option, and all the preprocessor conditional - sections that were resulting from it. - -Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: applied patch from Dodji Seketeli fixing an - uninitailized variable in xmlValidGetValidElements() - -Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * c14n.c: fixed a few comments - * doc/*.html doc/*/*.html: regenerated the docs and added - the C14N API - * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs - -Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com> - - * check-xml-test-suite.py: fix to adapt varaiations in the - bindings - * configure.in python/setup.py python/setup.py.in: fixed to - have the version of the python scripts automatically updated - -Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner - in xmlCopyProp() - -Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.17 release - * doc/*: updated and rebuilt the docs - * xpath.c: fixed a comment - * python/libxml.c: fixed a possible reentrancy problem - -Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c python/tests/Makefile.am python/tests/attribs.py: - fixed xmlHasNsProp() bugs for defaulted from DTD attribs, - added a specific regression test - * python/generator.py: xmlHasNsProp() and xmlHasProp() shall - not raise exceptions when failing to find the attribute. - -Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in xmllint.c: owen pointed out a problem with the - ftme fix, gettimeofday() was not detected by configure and - the ftime header wasn't included, dohhh - -Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in xmllint.c: trying to fix #71457 for timing - precision when gettimeofday() is not availble but ftime() is - -Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images - are now copied on install and part of the -devel RPM -Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: trying to avoid bug #72150 which was apparently - caused by a gcc bug (or a processor problem) as detailed - at http://veillard.com/gcc.bug - -Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c python/tests/Makefile.am python/tests/cutnpaste.py: - fixed xmlReconciliateNs(), added a Python test/example for - inter-document cut'n paste - * python/libxml.py: fixed node.doc on document nodes and added - xpathEval() onto node objects - -Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c: fixed some htmlSetMetaEncoding() problems - * python/libxml.c python/tests/Makefile.am python/tests/serialize.py: - fixup and integrated tests for the serialization stuff - -Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570 - moved the libxml man page to section 3 - -Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: fix bug #72490 - * python/libxml.c python/libxml.py: added methods serialize() - and saveTo() to all node elements. - -Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: closed #73430, don't read from an input source - which indicated an end-of-file or an error. - -Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: make sure SAX endDocument is always called as - this could result in a Python memory leak otherwise (it's - used to decrement ref-counting) - * python/generator.py python/libxml.c python/libxml.py - python/libxml2-python-api.xml python/libxml2class.txt - python/tests/error.py python/tests/xpath.py: implemented - the suggestions made by Gary Benson and extended the tests - to match it. - -Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py: applied patch fixing #73450 - -Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixing #61290 "namespace nodes have no parent" - long standing divergence from the XPath REC. NodeSets - simply hold a copy of namespace nodes and those node ->next - points to the parent (which may not be the node carrying the - definition). - * include/libxml/xpath.h: flagged but didn't added a possible - speedup - * DOCBparser.c HTMLparser.c: removed some warnings from push - parser due to new state being added. - * tree.c: new fix from Boris Erdmann - * configure.in c14n.c include/libxml/c14n.h testC14N.c: added - the XML Canonalization support from Aleksey Sanin - -Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: patch from Boris Erdmann fixing some namespace odities - with xmlCopyNode() - -Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: fix bug #72706 when loading a NULL entity - -Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could - actually change in a future XML Namespace revision. - -Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/types.c python/tests/Makefile.am python/tests/xpathret.py: - added the possibility of returning nodesets from XPath extension - functions written in Python - -Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/*: commiting some Python bindings work done while travelling - -Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: close #72663 and #72658, don't memdump unless compiled - explicitely with memory debugging switched on - -Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt python/libxml_wrap.h python/types.c: - Added wrapper for the xmlURIPtr type, provided accessors, fixed - the accessor generator for strings - * python/tests/Makefile.am python/tests/tstURI.py: added a specific - regression test. - -Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/README python/generator.py python/libxml.c python/setup.py: - added the 'usual' setup.py to allow building a libxml2-python - module based on the same code. The initialization is however - different the 2 .so files fo libxml2 and libxslt are identical and - they entry point initialize both libraries. this is done to avoid - some possible nasty problem since the Python don't merge the maps - of all shared modules. - -Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixed a push/encoding bug reported by Michael - on librsvg - -Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/parserInternals.h: fixes a misplaced #endif - -Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c valid.c: found and fixed a couple of allocation bugs - -Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/xml.html doc/python.html doc/*: added a Python and binding - page describing the current state of the Python bindings and - giving pointers to the other languages wrappers. - -Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16 - * doc/* python/libxml2class.txt: updated and rebuilt the docs, - rebuilt the API and web site - * xpath.c: fixed #71978 portability bugs - -Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c: oops broke automatic defaulting of namespaces attributes. - -Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/parserInternals.h parser.c: had to change - 2 internal parsing API when processing document content - to check the start and end of element content are defined - in the same entity - * valid.c include/libxml/valid.h: attribute normalization can - generate a validity error added xmlValidCtxtNormalizeAttributeValue() - with the context to report it. - * SAX.c: fixed the last known bugs, crazy validation constraints - when a document is standalone seems correctly handled. There - is a couple of open issues left which need consideration especially - PE93 on external unparsed entities and standalone status. - Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s. - The 2 tests left failing are actually in error. Cleanup done. - -Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: implemented E59 spaces in CDATA does not match the - nonterminal S - -Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c parser.c valid.c: more validation test fixups - * check-xml-test-suite.py: added duration info for the tests - -Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c valid.c: a couple of errors were reported but not - saved back as such in the parsing context. Down to 1% failure rate - Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error - -Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlInternald.c: isExtender was missing a char - * parser.c include/libxml/parser.h: % are acceptable in the - internal subset if within a PUBLIC ID - -Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c parserInternals.c valid.c: more work on the conformance - suite. Took the step to finally block documents with encoding - errors. It's a fatal error per the spec, people should have fixed - their documents by now. - -Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com> - - * check-xml-test-suite.py: fixed the test script after some discussion - on the semantic of TYPE="error" - * Makefile.am: added the script to the distrib - -Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c entities.c: fixed a couple of conformances issues deep - into the validation code (standalone and undeclared Notations) - -Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixed #71741 supid typo an a bug about encoding parsing - stayed there for years ! - -Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c SAX.c: fixed #71740 NotationDecl with a required field - missing - -Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com> - - * check-xml-test-suite.py: improved the behaviour a bit as - well as the logs - * parser.c valid.c SAX.c: fixed a few more bugs - "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error" - -Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com> - - * check-xml-test-suite.py: python script to run regression tests - against the XML Test suite of W3C/OASis - * SAX.c: fixed a validation bug - * parser.c: fixed 3 errors pointed by the test suite - * doc/buildDocBookCatalog: fixed a typo pointed by drake - * python/Makefile.am: fixed a dependendy - -Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlmemory.c: avoid a warning bug #71594 - -Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlmemory.c: Jesse Perry provided a patch to remove a few - warning on alpha/Tru64 - -Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/entities.h: fixing a comment - * valid.c: fixing some troubles with validity check on namespaces - * result/VC/NS3 test/VC/NS3: added a specific regression test - -Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: Fixing #71342 serializing '\n' in attribute values - * result/noent/att3 result/att3 test/att3: added a specific - test. - -Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml.c: couple of bug fixes - -Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/*.py: removed tabs and used spaces. - -Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15 - * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs - -Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707 - https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707 - -Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/encoding.h include/libxml/entities.h - include/libxml/globals.h include/libxml/parser.h - include/libxml/threads.h include/libxml/tree.h - include/libxml/xmlmemory.h: trying to fix the include mess - -Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlmemory.h: reverted part of the previous - attempt to provide #69655, this was breaking the build. - -Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c - globals.c parser.c threads.c tree.c valid.c xmlmemory.c - xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h - include/libxml/parserInternals.h include/libxml/tree.h - include/libxml/xmlmemory.h include/libxml/xpathInternals.h: - Tentatively fixed #69655 , make compiling with -Wredundant-decls - clean. - * python/libxml.c: fixed a warning. - -Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude - copying of node, merge back IDs in the target document. - * result/XInclude/docids.xml test/XInclude/docs/docids.xml - test/XInclude/ents/ids.xml: test case - * result/VC/ElementValid4: output changed due to a typo fix - -Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am: seems some version of automake didn't - generate the dependencies right as Jacob found out. Add - an extra dependency rule. - -Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c valid.c: Justin Fletcher found some parts - of the code needing cleanup - * libxml.spec.in python/Makefile.am python/generator.py - python/libxml.c python/libxml.py: Fixed the python Makefiles - corrected a bug showing up on ia64, changed the name of the - python internal module too - -Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: applied patch from Andris Pavenis for binary - name suffixes - -Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmllint.c win32/win32config.h: fixing #68748 - -Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: fixing #70166 - -Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: fixing #70077 - -Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Copyright Makefile.am README configure.in libxml.spec.in: - Changed to the MIT Licence - * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html - doc/xmlio.html: updated the doc accordingly - * include/libxml/xmlwin32version.h configure.in: preparing - 2.4.14 release - * python/generator.py python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt python/libxml_wrap.h python/types.c: - fixed the const xmlChar * wrapper and generator, XPath extension - functions now use the context as first argument - * python/tests/tstxpath.py python/tests/xpath.py - python/tests/xpathext.py: Updated the tests accordingly - * tree.c: fixed bug #70067 - -Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: cleanup - * debugXML.c: always use stdout if output is NULL - * xmlIO.c: don't close filedescriptors passed to outputBuffers - * python/Makefile.am python/generator.py python/libxml2class.txt - python/libxml_wrap.h python/types.c: augmented the number of bindings - handling FILE * and XPath contexts - * python/tests/Makefile.am: avoid a stupid problem due to the - use of TEST. - -Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in: fixed stupid bug #70738 found by alfons hoogervorst - -Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/TODO python/libxml.c: cleanup the extension function lookup - * xmlmemory.c include/libxml/xmlmemory.h: always compile the list - -Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in python/Makefile.am: do not install outside - of prefix - -Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/TODO python/libxml.c: started adding SAX interfaces - * python/tests/Makefile.am python/tests/pushSAX.py: added a basic - SAX test - -Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: hardened the addChild function - * python/generator.py python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt python/libxml_wrap.h python/TODO: - added accessors needed for xmlNode, a bit more testing and - extension of interfaces - * python/tests/Makefile.am python/tests/build.py: added a test - build from scratch/save/load/check - -Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c: change a small bit in the way valididy - error messages get initialized - * python/TODO python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt python/libxml_wrap.h python/types.c: - added some memory debugging to track leaks at the libxml2 level - * python/tests/*.py: changed all tests to check for leaks, - there is just one left in XPath extension registrations. - -Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/TODO python/generator.py python/libxml2-python-api.xml - python/libxml2class.txt: more accessor classes for the parser - context, allow to switch on and check validity - * python/tests/Makefile.am python/tests/error.py - python/tests/invalid.xml python/tests/valid.xml - python/tests/validate.py: attded more test and and added error.py - which I forgot to commit in the last step - -Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am python/types.c: cleanup - * python/libxml.c python/libxml.py python/libxml_wrap.h - python/generator.py python/libxml2-python-api.xml - python/libxml2class.txt: added class for parser context, added - first cut for push mode support. Added a framework to generate - accessors functions. - * python/tests/Makefile.am python/tests/push.py: added a push - test - -Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am python/TODO python/libxml.py: fixed a small - bug a bit of cleanup. - -Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt: adding error redirections and preformat - to a python handler - * python/tests/Makefile.am python/tests/*.py: cleanup made all - tests self checking - -Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml.c python/libxml.py: fixed a stupid bug when renaming - a function - -Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in python/Makefile.am python/TODO python/generator.py - python/libxml.c python/libxml2-python-api.xml - python/libxml2class.txt: Progressing through the TODOs, class - description output, extra XML API, RPM now builds the wrappers - for all python installed versions - -Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in libxml.spec.in python/Makefile.am python/TODO - python/generator.py python/libxml2class.txt: added more informations - in the libxml2-python package including docs. Slightly changed - the class hierarchy - * python/tests/*: added basic regression tests infrastructure too - -Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in libxml.spec.in example/Makefile.am python/Makefile.am: - added libxml2-python as part of the packages installed - -Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am python/generator.py python/libxml.c - python/libxml.py: more work, now able to extend the - XPath interpreter with functions written in python. - -Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am: Jacob sent a patch to allow building from - tarfile. - -Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/Makefile.am python/libxml.c configure.in Makefile.am: - inserted the python wrappers build, I hope this won't be too - unportable - -Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c: minor optimization - * python/generator.py python/libxml.c python/libxml.py - python/libxml_wrap.h: more work on the python bindings, - they now support XPath and there is no evident leak - -Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/libxml.py: - more work on the python bindings generator. - -Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/libxml_wrap.h: - more work on the python bindings. - -Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml.c python/libxml.py - python/libxml_wrap.h: commited early version of a python binding - for private use only ATM - -Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com> - - * entities.c tree.c include/libxml/entities.h: applied patch - from Anthony Jones to implement copy of DTD subtree too. Had - just to keep 2 function private which really ought to become - public ones. - -Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: added pointers to the web pages in the usage() - -Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: more fixes from Petr Kozelka for attribute handling - in the tree API to align the semantic with DOM. - -Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c tree.c entities.c: another set of patches from - Anthony Jones for copy operations cleanup and robustness - -Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated - an alphabetic index based on comments content - * doc/*: rebuilt the web site with the new references - -Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parserInternals.h: Greg Sjaardema suggested to use an - eponential buffer groth policy in xmlParserAddNodeInfo() - -Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html - doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml - doc/parsedecl.py doc/Makefile.am: updated the python extractor - to generate cross-references, and added/updated the stylesheets - to generate and link API indexes. The generic keyword index - is not done yet. - * doc/*.html: regenerated all the usual docs too - -Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: added an xpath function to the shell for T. V. Raman - -Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: patch from Anthony Jones to catch NULL nodes in - debug routines. - -Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: apply an patch from Petr Kozelka for unlink and replace - support of attribute nodes - -Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/libxml2-api.xml doc/parsedecl.py: Build a new version - hopefully near complete and fully documented of the API in XML - * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c - xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h - include/libxml/list.h include/libxml/parser.h include/libxml/tree.h - include/libxml/parserInternals.h include/libxml/valid.hi - include/libxml/xmlIO.h include/libxml/xmlerror.hi - include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini - include/libxml/xpath.h include/libxml/xpathInternals.h: - Cleaned up the doc comments a lot in the process, the interface - coverage is now 100% - -Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/libxml2-api.xml doc/parsedecl.py: improved the script to - extracts comments from the gtk-doc DocBook output (a bit - convoluted but seems to work). - -Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com> - - * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py: - added an XML description of the API, moved the script generating - it here. Added a "make api" target - -Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: Adam Lounds pointed out a bug in xmlSearchNs() - -Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xpath.c include/libxml/xpathInternals.h: the change made to - xmlXPathFuncLookupFunc was incompatible roll it back - -Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c: cleanup patch from Anthony Jones - * doc/Makefile.am: fix the headers to avoid in make scan - * parserInternals.c xpath.c include/libxml/*.h: cleanup of the - includes, * vs Ptr and general cleanup - * parsedecl.py: first version of a script to extract the - module interfaces, the goal will be to provide .decl or XML - specification of the interfaces to build wrappers. - -Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog - now provides return codes in case of errors - -Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net> - - * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am: - Upgraded to trio baseline 1.6 - * strio.h strio.c: Replaced by triostr.h and triostr.c - -Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com> - - * globals.c xmlIO.c xmlcatalog.c: removed the last occurences - of strdup usage in the code - -Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c error.c: Keith Isdale complained rightly that - xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc - -Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: fixed the funxtion to set the xml: attributes - * debugXML.c: added "setbase" to test it. - -Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen() - to allow updating an attribute content - -Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.h: try to avoid problems when compiling on Windows - -Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com> - - * hash.c: patch from Anthony Jones for hash.c allocation size - * Makefile.am: trying to work around Yet Another Libtool Madness - and build the 2.4.13 release finally ... - -Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13 - * doc/* : update of the documentation - -Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com> - - * debugXML.c tree.c: some cleanup after an unsuccessful attempt - at fixing #61290 :-( - -Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL - Fixes bug #67229 - -Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: trying to avoid troubles when a subtree is copied - and coalesced in part with the target tree. Should fix - bug #67407 - -Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c: fixed validation of attributes content of type - NAME NAMES NMTOKEN and NMTOKENS to accept internationalized - values, very old bug. Fixes #67671 - -Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c include/libxml/parserInternals.h tree.c: integrated - a couple of fixes and a new API function xmlSetEntityReferenceFunc() - from Keith Isdale and dedicated to xsldbg the XSLT debugger. - -Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com> - - * threads.c: applied Serguei Narojnyi's patch to add native - thread support on the Win32 platform - * testThreadsWin32.c Makefile.am: added the test program also - from Serguei, Win32 specific - * include/win32config.h include/libxml/xmlwin32version.h.in: - added patch from Igor for the Windows thread specific defines. - -Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com> - - * entities.c: Anthony Jones pointed a bug in xmlCopyEntity() - -Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html - output page into XMLinfo.html. Close bug #66951 and - raised by Robert Collins too. - -Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com> - - * encoding.c: Paul Keogh pointed out a possibility of segfault - on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias(). - Closes bug # 68238 - -Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/*.html: updated the Gdome2 links - -Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com> - - * libxml.h: Applied following patches from Robert Collins - and make sure IN_LIBXML is defined when compiling it - ------- - * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin - as well as Visual C. - * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin. - * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin. - * strio.c (PLATFORM_UNIX): Define for Cygwin. - * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin. - * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin. - Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory - xmlSysIDExists xmlNoNetExists). - * xmllint.c: Don't include winsock2.h for Cygwin. - -Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl() - when the version info is not present. - -Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com> - - * tree.c: Anthony Jones pointed out a problem in - xmlStringGetNodeList() and provided a fix for it - -Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: patch from Frank J Franklin to remove a bug in - xmlCreatePushParserCtxt() when the initial buffer passed - is large. - -Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com> - - * win32/*: big cleanup of the Windows/MSVC project files - from Igor Zlatkovic - -Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/Makefile.am: should fix #67674 and avoid troubles if - xsltproc is not available or fails in the prefix provided - -Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlmemory.c: one more doc patch from Charlie Bozeman. - -Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com> - - * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h - include/libxml/xmlerror.h include/libxml/xpathInternals.h: - Fixed a few other problems raised by Charlie Bozeman. - * result/VC/ElementValid[5-7]: fixed the output - -Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com> - - * *.c include/libxml/*.h doc/html/*: applied 42 documentation - patches from Charlie Bozeman. Regenerated the HTML docs. - -Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes - for Windows from Igor - -Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: applied Justin Fletcher patch for --output or -o - -Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com> - - * win32/libxml2/libxml2.def.src: close #67019 - -Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: applied Justin Fletcher generic timing patch - similar to the one already applied to xsltproc. - -Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/tree.h tree.c: applied documentation patches - from Charlie Bozeman - -Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net> - - *doc/xmllint.xml, xmllint.1 - document --dropdtd - -Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c: fix the xmlStrdup() used in the previous patch. - * valid.c: added --dropdtd - * tree.c: fixed xmlUnlinkNode so it also removes the references - from the document if the node is a DTD - -Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c valid.c: cleanup some static declarations - -Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: removed another strdup() - * doc/FAQ: removed the HP/UX entry - -Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c: fix bug #66816 when validating. - * xmllint.c: don't use sys/time.h if configure did not found it - -Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net> - - * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html, - xmlcatalog_man.xml - -Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that - xmlInitMemory() was declared twice - -Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com> - - * globals.c: do not reference strdup() ! - * configure.in libxml-2.0.pc.in: trying to fix the libs - of the various config extraction modules - -Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in : preparing 2.4.12 - * doc/* : updated and rebuilt the docs - -Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com> - - * uri.c: closed bug #66159 - * testURI.c: added --escape option - * configure.in: some cleanup for xml2-config --cflags - -Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com> - - * globals.c testThreads.c: removed some misplaced includes - of xmlversion.h - -Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com> - - * threads.c: patch from Gary Pennington fixing a possible - problem at initialization time. - -Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in libxml.h parser.c testThreads.c macos/: integrated - Eric Lavigne contribution to build libxml2 on MacOS using - CodeWarrior. - -Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: applied Geert Kloosterman's patch to fix - --repeat --timing output - -Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c: Robin Berjon <robin@knowscape.com> found a case - where non-wellformed XML declaractions were not detected. - -Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xpointer.c: fixed a compilation bug pointed by Danny Jamshy - -Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized - gets reset by xmlCleanupInputCallbacks() and this makes the - function useless. Same for output. - -Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: robert pointed out a loop error in callback cleanups - -Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com> - - * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h: - moved xmlGetLineNo() and xmlGetNodePath() into the main tree module, - they are not really tied to debugging - -Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11 - * xmllint.c: better --catalogs description - -Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com> - - * tree.c: fixed a couple of problems in xmlSetProp() - -Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing - unappropriate stdout output. - -Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/tree.h: Fixed a couple of macro errors pointed out - by Denis Beurive, closes #65111 - -Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c: in case of content model validity error, don't - print it if validity warnings were not requested. - -Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com> - - * nanoftp.c: applied a couple of patches from Brian D Ripley. - * parserInternals.c: removed the last exit() call. Print an - unmaskable error on stderr instead (library mismatch detection) - -Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net> - - * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with - shell instructions from Heiko Rupp - -Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: use the URL notation file:// for default catalog paths - -Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/tree.h: better comments for _private fields - * tree.c: removed a problem when copying an entity reference. - -Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com> - - * vms/*: updated instructions and diffs from John A Fotheringham - -Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlerror.h: avoid an include problem if - #include <libxml/xmlerror.h> happens first in code - seems to be the case in KDE libs - -Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/* include/libxml/xmlwin32version.h.in: update - from Igor for Windows - -Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: Gary Pennington pointed out a missing prefix - -Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10 - * doc/*: upgraded and rebuilt the docs - -Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: fix comment in scripts element parsing. - * result/HTML/doc3*: updated the results. - -Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com> - - * uri.c: another URI bug fix #63336, using Joel Young patch. - -Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath() - a cleaned up version of the Pwd shell string generation. - -Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c include/libxml/tree.h: trying to fix namespaces + - validation problems for good, closing #63619 in the process - * result/valid/dia.xml test/valid/dia.xml: the Dia test was - wrong in this respect, fixed it. - -Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: Morus Walter patch to allow --format and --encode - -Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: Stefan Kost provided an help command for the shell - -Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: Heiko Rupp pointed that the shell would crash - on empty nodesets returns. - -Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: Weiqi Gao pointed out that xmlcatalog - migh need the history libraries - -Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*: - handle the case of < in quoted attributes, Bastian Kleineidam - -Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9 - fixing catalog breakages - * Makefile.am catalog.c result/catalogs/catal - result/catalogs/mycatalog.* test/catalogs/catal*: - fixed more problems in catalog support, added more regression tests - for both XML and SGML catalog handling - -Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c: applied an improvement to xmlGetLineNo() from - Keith Isdale - -Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: dohhhh XML catalog add and remove ops were broken too. - Side effect of the progressive catalog loading - -Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: confexecdir and confexec_DATA were defined twice - pointed out by Karl Eichwalder - -Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmlcatalog.c: avoid unlink() and use remove() instead. - -Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in: cleanup - * include/libxml/xmlwin32version.h: updated with 2.4.8 - -Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com> - - * encoding.c global.data globals.c testThreads.c: fix bug #63752 - of compiling libxml with a non standard set of options - -Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net - - * doc/xmllint.xml, xmllint.1 - updating xmllint man page to - document --sgml option, fixing gnome bugzilla #63382 - -Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/catalog.h catalog.c: Fixed SGML catalogs - breakage of 2.4.7, added a couple of really needed APIs - like xmlCatalogIsEmpty() and xmlNewCatalog() - * xmlcatalog.c: updated --sgml --noout to be a suitable replacement - for install-catalog - * configure.in: preparing 2.4.8 - -Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c tree.c include/libxml/HTMLtree.h - include/libxml/tree.h include/libxml/xmlIO.h: more include - cleanups, export cleanly one html output + format function. - -Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c: removed initGenericErrorDefaultFunc call from - xmlInitParser() since it could destroy previous calls to - xsltSetGenericErrorFunc() effects - -Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com> - - * debugXML.c include/libxml/debugXML.h: bool can be a reserved - keyword. - -Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: cleanup - * threads.c: cleanup too - * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader() - from xsltproc - * include/libxml/tree.h include/libxml/parser.h: trying to break a - dependency loop. - -Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog - was not used anymore ! - -Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.7 - * Makefile.am doc/Makefile.am: switched to the latest xmllint - manual page from John - * doc/*: updated the doc and rebuilt the generated pages - -Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: closing bug #62711, the library should never - close stdin or stdout. - -Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com> - - * uri.c: second pass at fixing #63336, using Joel Young - final patch. looks okay. - -Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com> - - * uri.c include/libxml/uri.h: trying to clear #63336 - allowing the escaping routine to parse unconformant - URI-References. - -Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com> - - * vms/readme.vms vms/build_libxml.com nanoftp.c - include/libxml/xmlversion.h.in: a few VMS updates from - John A Fotheringham - * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks() - and xmlCleanupOutputCallbacks() for the Perl binding people. - -Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c globals.c DOCBparser.c HTMLparser.c error.c: - apply fixes to close #63271 and avoid segfaults when - the error routine gets callbed before xmlInitParser() - get called. - * nanoftp.c error.c: Applied patches from Justin Fletcher - correcting some xmlGenericError misuses. - -Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net> - - *doc/xmllint.xml, doc/xmllint.1 - New and improved man page for xmllint - .xml is the original, .1 - is the generated man page - -Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate - the web site from the main HTML document. - -Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c: fixed an erroneous validation bug when PE refs - occurs in external parsed entities referenced from the - internals subset - * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd - test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*: - added the associated testcase, it's a nice one. - * HTMLparser.c: generate the DTD node as HTML still ... - * HTMLtree.c: fixed errors in Set/GetMetaEncoding - -Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: fixed a bug in htmlNewDoc() - -Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * test/threads/*: added entities testing to the Thread test - * testThreads.c: make the test reasonable - * DOCBparser.c: fix the DTD public and system ID - * xmllint.c: added --sgml for SGML DocBook importing - * Makefile.am: added Docbtests target - -Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * nanoftp.c: use only "anonymous@" string for anonymous passwds - * testThreads.c: removed bogus include - -Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err: - fixed a very serious (looping) validation bug - -Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/globals.h include/libxml/threads.h threads.c - testThreads.c: far more testing, cleaning up bugs - * *.c : make sure globals.h is always included. - -Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c: try to get rid of parser loops for good. - -Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: fixed some bugs in CFLAGS passing. - * test/threads Makefile.am testThreads.c: added a specific - threaded test case (really nasty, guaranteed). - -Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: serious cleanup on the management of the - XML catalog tree, more tests done, especially with - the catalog PI. - -Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: avoid a problem in catalog cleanup on SMP if - catalogs were not initialized. - -Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c xpath.c: trying to cleanup the not thread safe - parts of the library. - -Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/globals.h configure.in global.data: make - the allocation be per-thread a configure option - * encoding.c include/libxml/parser.h: fixed compilation - errors - -Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/parser.h: Norm reported that a few lines - added were breaking libxslt compile, removed them for now - -Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c parserInternals.c threads.c: debugged and fixed - initialization problems which were giving troubles on SMP - boxes. - -Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/Makefile.am: missing globals.h - -Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * globals.c: added a couple of standard includes. - -Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h - include/libxml/parserInternals.h include/libxml/tree.h - include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c - nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c - testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c: - Applied the last patches from Gary, cleanup, activated threading - all user accessible global variables are now handled in globals.[ch] - Still a bit rought but make tests passes with either - --with-threads defined at configure time or not. - * Makefile.am example/Makefile.am: added globals.[ch] and threads - linking options - -Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am include/libxml/Makefile.am - include/libxml/globals.h globals.c include/libxml/threads.h - threads.c build_glob.py global.data xmlcatalog.c acconfig.h - configure.in: started integrating the core of the thread support - not activated yet but half integrated. The code should still - compile and work anyway. - -Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c - parser.c valid.c xmlmemory.c xpath.c xpointer.c: started - integrating the non-controversial parts of Gary Pennington - multithread patches - * catalog.c: corrected a small bug introduced - -Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c include/libxml/catalog.h: very serious cleanup, - isolating unportable code and as much as possible the accesses - to the global shared catalog. May need more testing ! - -Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/debugXML.h debugXML.c tree.c: integrating - Keith Isdale patches for the XSLT debugger interfaces. Some - cleanup - -Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/Makefile.mingw: update from Tobias Peters for 2.4.5 - * DOCBparser.c: generate line nubers in elements - -Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing 2.4.6 release - * doc/xml.html doc/html/*: updated and rebuilt the docs - * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos - -Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net> - - * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html - adding documentation for DV's supercatalog support - -Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML - super catalog support adding one API and one flag --sgml to - xmlcatalog - -Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net> - - * doc/xmlcatalog_man.xml, xmlcatalog.1 - One more crack at - https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392 - - -Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * xpath.c: implemented xmlXPathObjectCopy for external objects - * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal - -Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net> - - *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1 - finishing up fix to - https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making - the xmlcatalog man page display more elegantly - -Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: closing bug #61832 - * HTMLparser.c: removed a warning - -Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixing #61673 part I, do not loose doc information - when copying result value trees. - -Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: trying to harden the XPath interpreter - -Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net> - - * doc/xmlcatalog.1 updated using a new stylesheet to address, in - part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392 - -Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk> - - * HTMLparser: repaired another loop problem - -Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * uri.c: applied fix from Mathias Hasselmann about a bug in URI - parsing. - * xpath.c: fix bug #61291 the default XML namespace node is - missing from the namespace axis. - * tree.c: refuse to create namespaces nodes with prefix "xml" - -Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: ouch a non-defined namespace could lead to a crash, - fixed #61215 - -Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c: closed bug #61054 - -Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/Makefile.am: closing #60708 - -Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c: - adding xmlSAXParseFileWithData following Marco Stipek suggestion - -Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c: close bug #61550 when xml: wasn't considered a namespace - -Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/libxml2.def.src: Igor Zlatkovic patches - * DOCBparser.c HTMLparser.c parser.c: fixed typos - -Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: Justin Fletcher provided cleaup code in case - HAVE_STAT is not defined - * include/win32config.h: Igor Zlatkovic suggested to have - HAVE_STAT defined there - -Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk> - - * catalog.c - fixed typing error reported by M. Barros - -Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net> - - * xmllint.c - fixing typo - -Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk> - - * HTMLparser.c: small enhancement to prevent loop on - unrecognizable data - -Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parserInternals.c: applying patch from bug #60757 this - should close it - -Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c xmlcatalog.c: removed a couple of warning - * xpath.c: try to solve the linking problem on platforms - needing trio to compile - -Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am libxml.spec.in: backing up non-documented changes - commited without review or aproval by Jens Finke <jens@gnome.org> - * HACKING: made 100% clear that no commit should be done directly - -Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: Joe Orton provided a patch fixing a problem - when iconv is specified to be in a non-standard directory - but wasn't exported in xml2-config --cflags - -Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: let's ship 2.4.5 before getting too much - troubles with 2.4.4 errors. - -Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * encoding.c entities.c: do not output hexadecimal charrefs - when serializing HTML since some version of Netscape can't - grok it, generate decimal ones. - * result/HTML/doc3.htm: output changed due to previous test - * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4 - -Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * libxml-2.0.pc.in: dohh generated the wrong include path :-( - * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-( - -Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com> - Released 2.4.4 - - * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am - libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml, - updated the configuration scripts systems accordingly - -Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * configure.in: preparing for 2.4.4 - * doc/xml.html doc/html/*: updated and rebuilt the docs - -Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/libxml2.def.src: tried to incorporate comments - from bug #59220 - -Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c result/noent/wml.xml: fixed bug #59981 related - to handling of '&' in attributes when entities are substitued - -Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * libxml.h include/libxml/xmlversion.h.in - include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in: - Tried to close bug #60131 - -Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: fixed a bug in the HTML parser introduced Sep 9 - -Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: fixing bug #59946 on xmlns="" - -Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple - but allocates a new error code. - -Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: John Fleck fixed typos in the options output - * parser.c SAX.c: fix ignorable white space SAX selection - -Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * entities.c: Steve Underwood found the possibility of an - ininite loop in case of error. - -Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD - -Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * parser.c: warn if version is not 1.0 but it's not - strictly speaking an error after analyzing the spec - -Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net> - - *doc/catalog.html - add link to the html version of the - man page, other linguistic cleanups - -Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net> - - * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1 - adding documentation for xmlcatalog. Note: xmlcatalog.1, the man - file, has not yet been included in the build. - -Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: removed a duplicate affectation Justin Fletcher - -Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * tree.c: Armin Sander pointed a possible text coalescing - problem, completed his patch. - -Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> - - * trionan.c: Fixed const and volatile re-definition problem - -Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * libxml.4 parser.c: doc updates from Heiko Rupp - * parserInternals.c: 2 sanity checks from Heiko Rupp - -Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * tree.c: applied patch from Armin Sander to make some pointers - const in xmlCopyNode() - * include/libxml/tree.h: added fix to the header - -Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: hum, restrict the integer usage gcc bug workaround - to only gcc compilers so that other architecture don't get - penalized by this limitation. - * include/libxml/xpath.h: small typo fix from Heiko W. Rupp - -Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * valid.c: fixed a Windows compiler warning (Chris Poblete) - * xpath.c: fix for mod when dividend is 0 (Chris Poblete) - -Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/catalog.h catalog.c xmlcatalog.c: added a - --convert option to xmlcatalog to convert SGML ones to - the XML syntax. - * xmllint.c: small cleanup for $SGML_CATALOG_FILES support. - - 2.4.3 got released at that point -Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c xmlIO.c: started some serious testing and fixed - a few bug and optmization needs. - -Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am configure.in include/libxml/xmlwin32version.h: - preparing for a 2.4.3 release even if it may not be ready yet - * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected - all file parsing lookup to go through the entity resolver, add - to add an API to bypass it (needed to load catalogs themselves), - some cleanup on the catalog code too. - * nanoftp.c: small cleanup - * doc/catalog.html: small update - -Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by - Jun Kuriyama - -Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * doc/catalog.html: finished the catalog documentation - -Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * doc/catalog.html doc/xml.html: added documentation about - Catalog support, misses an API description - * doc/html/*: reextracted the API pages - -Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c: - Added the part about section 7.2 on URI resolution, - fixed a side effect in the HTML parser, look complete - and ready to rock except the URI/SystemID part! - -Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/catalog.h include/libxml/parser.h - include/libxml/xmlerror.h catalog.c parser.c parserInternals.c - xmlIO.c: added support and APIs needed for the catalog PI - * include/libxml/xmlIO.h: cleanup - -Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c - include/libxml/catalog.h: starts to look okay, really - plugged the new framework, cleaned a lot of stuff, - added some APIs, except the PI's support missing this - should be mostly complete - * result/catalogs/* test/catalogs/*: added new test, enriched - the existing one with URN ID tests - -Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * catalog.c: fixed nextCatalog - * result/catalogs/docbook test/catalogs/*: started adding - a small regression test - -Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h: - more work on the XML catalog support. - * parser.c include/libxml/parser.h: small cleanup seems using - list as a public parameter name can give portability troubles - * trionan.c trionan.h xpath.c include/libxml/trionan.h - include/libxml/xpath.h include/libxml/Makefile.am: removed - trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN - wrappers - -Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> - - * Makefile.am trio.c triodef.h trionan.c xpath.c - include/libxml/Makefile.am include/libxml/trionan.h: - Re-worked Not-A-Number and Infinity support. - * xmlcatalog.c: added readline include files - -Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * Makefile.am xmlcatalog.c libxml.spec.in: renaming - testCatalog as xmlcatalog, making it an installed app - adding a shell, and preparing it to be a /etc/xml/catalog - management tool, though not ready yet - * catalog.c include/libxml/catalog.h: adding support for - XML Catalogs http://www.oasis-open.org/committees/entity/ - not finished, there is some interesting tradeoffs and a - few open questions left. - -Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: fixed a line formatting problem - -Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: removed a couple of unused variable (Albert Chin) - -Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h: - trying to fix some troubles w.r.t. function returning - const xxxPtr. - -Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/libxml2.def.src: another set of symbols conditionally - defined - -Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpointer.c: removed unused var - -Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * testXPath.c: another small cleanup closing bug #59110 - -Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * win32/dsp/libxml2.def.src: small cleanup closing bug - #59108 - -Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * example/gjobread.c: add xmlCleanupParser() before leaving - -Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * config.h.in configure.in include/libxml/xmlwin32version.h: - released 2.4.2 - -Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * include/libxml/valid.h debugXML.c valid.c: deprecate - the non-boundchecking Sprintf functions, add Snprintf - this should close bug #57984 - -Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped - URIs before doing the lookups (pointed by Mark Vakoc) - -Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: serious changes on Result Value Trees and NodeSets - w.r.t. deallocation and collect operations. Probably not - 100% clean (merge of allocated trees smells like a problem). - Seems sufficient to close #58943 - -Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: adding a --format option - -Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: count() was broken on Result Value Tree - * xmlIO.c: fixed file:/// accesses on _WIN32 - -Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the - macro was renamed, this should close bug #58683 - -Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: small fix fixing bug #58539 reported by coolo, in - entity substitution mode text at the end of the entity might - be added due to text coalescing. - * nanoftp.c parser.c: small cleanup - -Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * HACKING: added John Fleck right to commit in the doc subdir - -Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h: - allow to inherit attributes from the DTD directly in the - tree, this is needed for XPath and can be a useful feature. - Inherited namespaces are always provided at the tree level now - * test/defattr* result/defattr* result/noent/defattr*: added a couple - of tests for this feature (XSLT being the prime user). - -Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c - testSAX.c xmlIO.c xmllint.c include/win32config.h - include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h - include/libxml/xmlwin32version.h.in win32/README.MSDev - win32/dsp/*: applied Win32 Facelift No.2 patches from - Igor Zlatkovic for Windows/MSC - -Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * SAX.c: unparsedEntityDecl() the URI computation of the - entity wasn't done breaking XSLT unparsed-entity-uri() - -Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com> - - * xpath.c: fixed a bug when walking the descendants and - the current node has no children - * debugXML.c: show up when a text node is supposed to not be escaped - -Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it - worked like the set:leading() function) - * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains - -Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * nanohttp.c: protected an use of EAGAIN, Brian Stafford - -Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/xmlIO.h: apply change to close #58141 - * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic - -Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: when the internal subset uses a PE, then the - included entity can use conditional sections. - -Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c include/libxml/xpath.h: fixed a serious memory problen - when walking the namespace axis showing up in - libxst/tests/general/bug-12 - * xmlmemory.c: added the possibility to trace a given block - defined by its address - -Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: don't override existing encoding specified before - starting xmlParseDocument() - -Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/xmlwin32version.h: reinserted, needed for - Windows users of CVS - -2001-07-27 Darin Adler <darin@bentspoon.com> - - * encoding.c: (xmlIconvWrapper): Add cast to fix warning. - * testCatalog.c: Add include of <libxml/parser.h>. - -2001-07-27 Darin Adler <darin@bentspoon.com> - - * include/libxml/.cvsignore: - * include/libxml/xmlwin32version.h: - Remove this file from CVS because it's generated. - -Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c include/libxml/parser.h: applied const patches from - Tom Moog #58002 - -Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * xpath.c include/libxml/xpath{,Internals}.h: added a function - lookup framework - -Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed xmlCopyNode() for documents - -Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed bugs #58073 reported by Greg Shtilman - -Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixes bug #57652 reported by Morus Walter - -Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave - -Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c parserInternals.c: fixed the xmlLineNumbersDefault() - errors, lesson don't add new functions at 1am before a release - * xpath.c: integrated fix from Bjorn to avoid divide by zero - from XPath initialization when possible. - -Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * result/scripts/base*: removing history/readline changed - this slightly - * include/libxml/parser.h SAX.c parser.c parserInternals.c - xmllint.c: make element content line number generation - optionnal to avoid breaking old apps added interface to switch - -Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: get rid of the readline and libhistory - dependencies by default, release 2.4.1 with IA64 fix - * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h - include/libxml/tree.h include/libxml/xmlIO.h: incorporated - John Kroll fixes to allow saving to HTTP via PUT (or - POST of needed). - * doc/html/*.html: regenerated the docs - -Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * hash.c include/libxml/hash.h: added xmlHashScannerFull, - xmlHashScanFull and xmlHashScannFull3 to get passed the - three keys as arguments to the callback function - -Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in Makefile.am: removed libxml softlink for good - * include/libxml/*.h *.c doc/Makefile.am: cleanup to get - 100% coverage by gtk-doc - -Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64, - fixed serious troubles due to size_t vs. int mismatch - -Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c xmlIO.c: cleaned up some warning on the Alpha - -Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * include/libxml/xpath{,Internals}.h xpath.c: added a more - convenient extension API for value and context managing - Now handles external objects through xmlXPathPopExternal, - xmlXPathWrapExternal and xmlXPathReturnExternal. - Added functions for sets operations (intersection, etc.) - -Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/parserInternals.h include/libxml/HTMLparser.h - xmlIO.c tree.c parserInternals.c entities.c encoding.c - HTMLparser.c: cleanup of global variables, marking some - const or private. - -Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> - - * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF} - fixed xmlXPathNodeSetItem when passing index=0 - -Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/xmlwin32version.h.in: added xmlCheckVersion() - -Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmllint.c: fixed compilation under Cygwin #57503 - * TODO: update - -2001-07-13 Peter Williams <peterw@ximian.com> - - * config.h.in: add #undef HAVE_DLFCN_H - - * example/Makefile.am (INCLUDES): Compile fix when srcdir != - builddir. - -Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * win32/libxml2/libxml2.def.src: added a couple of exported entries - raised by #57348 and #57381 - -Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c - tree.c xpointer.c: store the line numbder in element->content, - may break some software, need a configuration mechanism - -2001-07-10 Darin Adler <darin@bentspoon.com> - - * .cvsignore: - * example/.cvsignore: - * include/.cvsignore: - * include/libxml/.cvsignore: - Various things that are generated and should be ignored. - -Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in include/libxml/xmlwin32version.h: release of 2.4.0 - * doc/xml.html doc/html/*: updated the docs - -Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements - validation occured on content with element child - -Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed XML Base computation which was broken - * debugXML.c: added a base function to the shell - * Makefile.am result/scripts/* test/scripts/*: added scripts - based regression tests, and adding 2 XML Base tests - -Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: set properties doc and call xmlSetListDoc for properties - content when grafting them in a different tree. - * aclocal.m4: remove from CVS - -Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * win32/libxml2/libxml2.def.src: added some missing entry point - for XPath (Mark Vakoc) - -Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O - layer should URI-Unescape before trying to open resources. - -Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fix the name() bug for elements in the default - namespace reported by Charlie Bozeman - -Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this - led to an XPath fix, improvements of SAX initialization, and - an added option --nocdata to testXPath - -Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/libxml-doc.el: Felix Natter provided anew version working - with XEmacs too - -Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/xpath.h: small cleanup - * doc/xml.html: update - -Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am configure.in include/libxml/xmlwin32version.h: - released 2.3.14 - -Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/html/*: rebuilt the docs for the release - * doc/xml.html: added 2.3.14 release. - -Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: a bug reported by Stephan Kulow empty nodesets - were not equal to empty strings - -Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c: fixed a URI-Reference computation problem when validating - * xmlIO.c: small cleanup - -Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: improved the description of a couple of interfaces - upon Larry Stamper suggestion - -Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c entities.c parser.c: changed completely the way entities - are handled when running the parser in entity substitution mode. - This fixes a bug reported by Stephan Kulow and nearly divides - by 3 the amount of memory required by libxslt to load and process - DocBook TDG. - -Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: fixing a too early root closing problem raised - byt Prashanth Naidu - -Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS() - raised by Mark Vakoc. - -Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * example/Makefile.am: fixed the include path to add srcdir/include - * Makefile.am configure.in: fix from Albert Chin for iconv detection - and some cleanup - -Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h: - lot of optimization work, results in significant improvements - when handling really complex XPath queries. Add a small optimizer - for unions, improve [n] and [last()], avoid some costly ops. - -Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/parser.h parser.c: xmlStrstr args are both const - * xpath.c: small cleanup - * xmlGetNsList: reformated, fixed problems if used on Entities - -Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: added 1.8.14 and 2.3.13 releases - -Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in include/libxml/xmlwin32version.h: released 2.3.13 - * Makefile.am example/Makefile.am: workaround automake generating - erroneous deps - -Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/win32config.h: bug #56801 Yon Derek provided a patch - to the windows config file. - -Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src - libxml.h : Yon Derek provided a set of changes to compile from - CVS on Windows/MSC - -Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed UTF8 BOM support in push mode - * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml: - added a specific testcase - -Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: added --push regression tests - * parserInternals.c: the XML parser segfaulted in --push mode - -Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: moved the symlinks detection within a CVS - check, this is not portable and will be removed soon. - * xpath.c: small cleanup/speedup - -Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in doc/xml.html include/libxml/xmlwin32version.h: - release of 2.3.12 - * parser.c: make an error message if unknow entities in all cases - -Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * uri.c: fixed 2 uri normalization bugs on '//' reduction - -Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/libxml/Makefile.am: Laszlo Peter pointed out that - includes were installed in the wrong dir - -Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/html.xml: warn against sending code to exhibit bugs. - -Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: patch to xmlXPathFormatNumber for the optimizer on - Tru64 from Thomas Leitner - -Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * AUTHORS: added William and Bjorn - * include/libxml/*.h *.c README doc/*.html etc.: changed old email to - daniel@veillard.com hopefully I won't have to do this again - * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that - docs can be rebuilt cleanly now - * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h - from CVs it's generated, added include/libxml/xmlwin32version.h - also generated but which should change far less frequently. - * catalog.c nanoftp.c: made sure to include libxml.h not - libxml/xmlversion.h directly - * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h - when compiling on WIN32 and MSC - -Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/Makefile.am include/libxml/Makefile.am configure.in: - fixed make distcheck and rebuilding the rpms - -Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: should finish the migration of exported includes - into a real include/libxml in CVS, at least for CVS users. - * removed the exported headers, added in include/libxml (as well - as xmlversion.h.in). - -Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: fixed the way to detect symlink - -Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: updated, include/libxml is now a real CVS dir - -Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/libxml-doc.el: a new version of libxml-doc.el. This new - version works with both libxml1 and libxml2 (it autodetects - the prefix of the html-files) from Felix Natter. - * doc/xml.html: updated doc accordingly - -Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed the bug generating a template loop in libxslt - when using docbook-xsl-1.4, * should filter out document nodes - * HACKING: added William - * TODO: updated - -Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/FAQ.html: added a warning about gcc-3.0 - * doc/xml.html: added reference to gdome2 and removed a confusing - sentence - -Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlversion.h: okay this is a generated file, but Windows - users need it and they can't generate it, and I want CVS - Windows users ... - * win32/libxml2/libxml2_so.dsp: Windows project file for - the shared lib version of libxml2 - * win32/libxml2/libxml2.def.src: bug #56527 set of exported - resources needed for libxslt/xsltproc by Yon Derek - -Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> - - * trio.c: MSVC fix (provided by Igor Zlatkovic) - -Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/win32config.h: another small fix for ATTRIBUTE_UNUSED - -Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * include/win32config.h: Yon Derek provided a first fix - to be able to compile libxslt/xsltproc on Windows - -Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: attempt to work around what seemed a gcc optimizer - bug when handling floats on i386 http://veillard.com/gcc.bug - * tree.c entities.c encoding.c: doing some cleanups while - chasing it - -Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: cleanup when --without-debug is specified - * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup - w.r.t. --without-debug and other include points - * catalog.h testCatalog.c: a bit of cleanup and prepare for XML - Catalogs - * configure.in entities.h tree.h HTMLparser.c: removed - --without-corba, made the _private field mandatory - -Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c parserInternals.c encoding.c: Since Notepad on Win2k - outputs a BOM in UTF8, an errata has been issued to avoid the - problem, that was the most reasonable solution... Add support - for a leading UTF8 BOM in entities. - -Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: fixed a bug found when post validating an entity ref - * xmllint.c: added --loaddtd and sligly changed --postvalid to - activate it too - -Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of - weakness in the node copy the XPointer and the XInclude - implementations. Serious cleanup. - -Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: Kjartan Maraas provided a small patch to - add xml2-config.in to EXTRA_DIST - -Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c tree.c parserInternals.c parser.c: Stephan Kulow - provided another failing case found in KDE, the way the - ctxt->vctxt.nodeTab was allocated and freed changed over - time but it wasn't completely cleaned up. This should fix it. - -Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: Stephan Kulow also raised the fact that line number - could get miscounted making debug harder, fixed the problem - in xmlParseCharData() - -Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: Stephan Kulow pointed out a problem when validating - and using an empty entity, forgot a 'break' in a case. - -Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed xmlHasNsProp() accordingly to bug #55683 - * doc/xml.html: updated with 2.3.11 - -Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * TODO: updated adding cleanup of generated doc - * configure.in: prepared to release 2.3.11 - * xmllint.c: added --version for bug reporting - * doc/html/*.html: rebuilt the doc - -Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: first part of the work on selecting namespace to - fix bug #56115 - -Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am example/Makefile.am: Laszlo PETER provided a fix - when using -liconv - * TODO: updated - -Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.[ch]: more work on the HTML serialization routnes, - cleanup, encoding support. - -Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: Thomas Broyer suggested a better patch for the / arg - -Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: bug detected by Ankh when / is used as a function arg - -Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.[ch] HTMLtree.c: stored the inline/block property - of element and use it to avoid outputting formatting spaces at - the wrong place. Implemented the format parameter for HTML save. - * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm - result/HTML/script.html result/HTML/test2.html result/HTML/test3.html - result/HTML/wired.html: of course this impact the result of a - number of HTML tests - -Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.[ch]: started augmenting the HTML save API with - encoding and formatting parameters - -Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.h: cleanup and started evaluating the work needed on - revamping the HTML output code - -Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c: handling of PIs and <?sgml-declaration in entities. - -Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: fixed bug #56049, forgot one check in the - validation routine - -Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch]: grrr ... namespace is a C++ reserved keyword - -Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * libxml.h: fixed an error in last commit - * doc/FAQ.html: added an entry for compilation from CVS - -Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlversion.h.in libxml.h: Cygwin patches - * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one - * tree.h: cleanup - -Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: patched xmlFreeNode() to avoid freeing() a static - memory block in a strange case where libxml is linked twice - in the binary. - -Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: (a? , b? , c? , ... , z?) was storing/restauring - state far too often, simple fix used to avoid it. - -Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xinclude.c: Raphael Hertzog had a trouble with DTD nodes - being processed, applied his patch - * tree.c: fixed a bug raised in xmlStaticCopyNodeList() - -Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic - provided fixes to compile on MSCC again - * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he - also provided an update for the project files. - -Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix - bug #55810 - -Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed xmlGetNsProp() to close bug #55683 - Note this requires libxslt to use it's own function instead. - -Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: when in a pre element no formatting space should - be added. - * test/HTML/pre.html result/HTML/pre.html*: added a regression test - -Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: added tests for signal() and signal.h - -Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: robert pointed out xmlXPathNINF was not initialized - -Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/libxml-doc.el: Felix Natter provided a new version for - libxml2 - -Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: when in a pre element no formatting space should - be added. - -Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha - -Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?> - hack - * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653 - * uri.c: fixed a warning - -Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: trying to close bug #55772 escaping in script - elements - * doc/xml.html: suggest to send mail to the list - -Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * error.c: attempt to fix the xmlGetVarStr breakage once and for - good. Use a macro and based on the solution provided in - vsnprintf manual page from GNU. - -Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> - - * error.c: Workaround for non-preserving variadic list. - * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4 - -Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: added 2.3.10 release - -Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: releasing 2.3.10 - -Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: Gary Pennington spotted a few troubles with file:/// - -Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * encoding.c: Robert Collins provided a patch to add the - "US-ASCII" encoding alias - -Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8 - string oriented functions and started cleaning the related areas - in xpath.c which needed fixing in this respect - -Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug - #55380 - * tree.c: patch to xmlNodeGetContent() to get CDATA section content - -Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * TODO: updated - * nanohttp.[ch] : started adding APIs to get the redirected URL - when this occurs (needed for further base computation - * tree.h: cleanup - * encoding.c: cleanup - * SAX.c: minor change around ctxt->loadsubset - -Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am include/Makefile.am: small change to have - include/libxml rebuilt if working from CVS. - * uri.c: applied another patch from Carl Douglas for URI escaping, - this should close bug #51876 - -Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xinclude.c: fixed XInclude recursive behaviour bug #54678 - * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml - test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent: - added specific regression test - * parser.h: preparing for the XSLT mode where DTD inherited - attributes are added to the tree. - -Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xinclude.[ch]: Updated the namespace for the Last Call version - * result/XInclude/include test/XInclude/include: updated the - testsuite accordingly - -Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * uri.[ch]: applied a patch from Carl Douglas for URI escaping, - related to bug #51876 - -Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed a gross mistake in base computation, xml:base is - not completely correct yet (need cascade). - * xpath.[ch]: added the few things needed to find a function name - and URI from the XPath context when it is called. - -Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * catalog.[ch]: fixes and add xmlLoadCatalogs() - * DOCBparser.c: small cleanup - * xmllint.c: added a --catalogs option to load catalogs from - $SGML_CATALOG_FILES - * tree.c: cleanup - * configure.in: iconv library fixup, ICONV_LIBS - -Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * catalog.c: handling of CATALOG entries. detection of recursion, - and a few bugfixes - * xpath.c: fixing bug #54951 QNAME with no prefix should not match - against the default namespace - -Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: Joe Orton reported a bug found with IRIx compiler. - -Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed propagation context info when parsing an - external entity. - * doc/html/*.html: regenerated a couple of docs - -Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: update with 2.3.9 informations - -Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c - xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc - * doc/html/* : rebuilt the docs - * valid.c: small patch which may improve some case when - validating. - -Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: Closed bug #54891 - * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test - to the suite - -Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c: - applied a documentation patch from LotR and filled in a few missing - descriptions - -Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c tree.c parser.c: speed optimizations at the parser level - document tree freeing and xpath evaluation - -Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c parser.h parserInternals.h: fixed a couple of - interfaces for handling memory buffer input to const char * - upon suggestion of JamesH. - -Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: LoTR sent a patch fixing the previous commit - -Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: trying to deal again with the stoopid -R linking - flag of Solaris - -Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.h: two nodeset access macros from Thomas Broyer - -Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup - patch from Thomas Broyer - -Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test - case - * INSTALL: was empty added stuff from the FAQ - -Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch]: fixing bug #54446, by cleaning some bugs in the - attributes handling and #54433 by adding xmlUnsetProp() - and xmlUnsetNsProp() - -Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: Patch from Jonas Borgström - (htmlGetEndPriority): New function, returns - the priority of a certain element. - (htmlAutoCloseOnClose): Only close inline elements if they - all have lower or equal priority. - * result/HTML: this of course changed a number of tests results. - -Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c catalog.c: plugged in the default catalog resolution - * doc/gnome-xml.sgml: linked in the Docbook parser and catalog - documentations - * doc/html/libxml-*.html: rebuild added the missing ones to CVS - -Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am xmlversion.h.in configure.in include/Makefile.am: - integrating catalogs - * catalog.[ch] testCatalog.c: adding a small catalo API - (only SGML catalog support). - * parser.c: restaured xmlKeepBlanksDefault(0) API - -Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: zb@bisp.com reported an error in xmlNodeGetLang() - -Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: added xmlParseExternalEntityPrivate() to allow - propagation of ctxt->_private when parsing external entities - -Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump - -Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: fixed a small portability problem with AM_CONDITIONAL - -Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: warn when indeterminist content model is detected - * result/VC/ElementValid8: this adds a message - * Makefile.am: add --novalid for VCM tests - * parserInternals.c: added a call to Init memory - -Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion - when both parameters are NULL. - -Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: applied small patch from Gary Pennington, reindented - some part of the code. - -Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in doc/xml.html doc/html/*: preparing for 2.3.8 - release, updated and regenerated the docs - -Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c result/XPath/expr/floats : clarified and cleanup - printing of abnormal floats in tests. - -Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: trying to fix the problem reported by Jonas Borgström - * results/HTML/ : a few changes in the output of the HTML tests as - a result. - * configure.in: tying to fix -liconv where needed - -Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: fixed a stupid error - -Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in Makefile.am: make the inclusion of the trio - modules in the library conditional - -Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c: patche from László Kovács, fixed entities refs - in attributes handling - -Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer - flushing - -Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fix of an XSLT namespace bug reported on the list - general/bug-8- - -Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * strio.h trio.c: Dan McNichol suggested a couple of small - fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler - -Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c parser.c encoding.c: spent a bit more time looking - at the parsing speed and DOM handling. Added a few more - speedups. - -Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: small but effective parsing speed improvement - -Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: default on the DocBook parser inclusion (for Gnome) - * DOCBparser.h: fixed a header reference - -Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in xpath.c: applied Bjorn patches for FPE on the - alpha - -Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add - xmlSaveFormatFileTo() - -Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: simple and efficient optimization, XPath functions - aways bind to the same code, cache this - * TODO: updated (by saying some is obsolete) - -Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: more cleanup work on XPath name parsing routines - -Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parserInternals.c xpath.[ch]: some UTF8 cleanup on - xmlXPathParseName - * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC - * debugXML.c: avoid compilation problems if compiling without - HTML support, Igor Zlatkovic - * win32/libxml2/libxml2.def.src: being able to compile without - XPath on Windows - -Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * libxml.m4: yet another patch from Toshio Kuratomi - -Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi - -Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch]: added xmlSaveFormatFile interface for saving - and indenting a file. - -Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed bug #53689 related to processing-instruction() - -Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c: patche from László Kovács - -Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: applied fixes from Christian Glahn bug report #53391 - -Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * error.c: Jean François Lecomte provided a complete description - and a fix to bug #53537 - -Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi - -Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c SAX.c: a bit more work on entities processing. - Still Need to cleanup XML output and references in attributes - -Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c include/Makefile.am: two patches from László Kovács - -Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: trying to fix #53574, not completely complete, - I would like xmllint --copy --debug test/ent1 and - xmllint --debug test/ent1 to show the same result. - * xpath.c: fix a bug when trying to sort namespace nodes - -Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: real fix for #53402 - -Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of - PIs when using xsl:output - * valid.c: closing #53537 some case generate segfaults if there - is validity errors - -Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c testDocbook.c DOCBparser.c: more work on the support - of external parsed entities, added --noent to testDocbook - * valid.c: Garry Pennington found an uninitialized variable - access in xmlValidateElementContent() - -Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c : HTML parsing still sucks ... trying to deal - with madness - * result/HTML/ : this modified the result of the regression tests - a lot. - -Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses - to doc where it wasn't checked against NULL reported by - Jens Laas - -Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements - now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>. - -Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am - xmlversion.h.in: started (re)integrating the DocBook SGML parser. - * SAX.[ch]: cleanup and updates for DocBook - * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or - ex SGML identifier changes - * valid.c: removed a static unused function. - -Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLtree.c: applied change for Paul Sponagl on script saving - * Makefile.am: the warning about entity title.xml are normal. - -Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: release of 2.3.7 - * Makefile.am: fixing make distcheck - -Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/html/* doc/xml.html: updated and regenerated the docs - -Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed the XPointer problem introduced in 2.3.6 - -Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed #53388 with the provided patch - -Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: Bjorn detected an invalid memory access. Fixed - vstateVPush() - -Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr - -Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> - - * libxml.h: new header used only for the compilation of libxml - * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c - error.c hash.c list.c nanoftp.c nanohttp.c parser.c - parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c - tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c - xmlmemory.c xpath.c xpointer.c: libxml.h integration - * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio - baseline (version 1.2 plus a single patch). - * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses - scientific notation for numbers. Tests added. - * xpath.c: formatting of numbers changed to use sprintf - (contribution from William Brack) - -Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: cleanup, more useful debugging - * parserInternals.c: cleanup vctxt.nodeTab (de)allocation - * xmlIO.c: entity loading is printed as an error when validating - -Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: fixed to validate within entities - * test/VCM/v22.xml: added a specific testcase - -Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: forgot an epsilon transition in for ()+ - * test/VCM/v21.xml : added a specific test case - -Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: removed a state explosion exhibited by RSS - * test/valid/rss.xml result/valid/rss.xml*: added the testcase - from bug #51872 - -Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.[ch] tree.h: worked *hard* to get non-determinist content - validation without using an ugly NFA -> DFA algo in the source. - Made a specific algorithm easier to maintain, using a single - stack and without recursion. - * Makefile.am test/VCM/*.xml: added more tests to "make Validtests" - * hash.c: made the growing routine static - * tree.h parser.c: added the parent information to an - xmlElementContent node. - -Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c parser.c xpath.c: generating IDs when not validating - from an external parsed entity was poisoning the ID has table - with removed values. This was killing XSLT on the KDE help - browser. - -Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * entities.h: andrew@ugh.net.au detected a double declaration - -Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * debugXML.c hash.c tree.h valid.c : some changes related to - the validation suport to improve speed with DocBook - * result/VC/OneID2 result/VC/OneID3 : this slightly changes - the way validation errors get reported - -Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c HTMLtree.c: applied part of the patches provided - by P C Chow and William M. Brack for XSLT HTML output - -Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlversion.h.in win32config.h win32/libxml2/*: applied - Igor Zlatkovic patches for MSC compilation and added his - updates - -Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper - prefix lookup. - * parserInternals.c: fixed the bug reported by Morus Walter - due to an off by one typo in xmlStringCurrentChar() - -Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c result/HTML/*: revamped the way the HTML - parser handles end of tags or end of input - -Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch] : added xmlDocCopyNode for gdome2 support - -Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.h: include xmlmemory.h this seems to havoid a nasty glibc - bug where the linktime verions of free() won't work ... - -Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * config.h.in configure.in xmlversion.h.in: added ansidecl.h test - -Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: added 2.3.6 release - -Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed xmlStringGetNodeList() to handle charrefs - * result/wml.xml: resulted in a small output change - -Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: xmlNewDoc was missing the charset initialization - * xmllint.c: added --auto to autogenerate a doc, allow to - reproduce the problem fixed on xmlNewDoc - -Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: trying to get 52979 solved - * tree.c result/ result/noent/: trying to get 52712 solved, this - also made me clean up the fact that XML output in general should - not add formating blanks by default, this changed the output of - a few tests - -Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: Bill Brack pointer an error in detecting a null nodeset - -Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: finally released 2.3.6 - -Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: checking for null pointer generated by new code - -Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed a [] evaluation problem reported - * test/XPath/tests/simpleaddr: extended test - * result/XPath/simpleaddr: updated result - -Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmllint.c: Dan Timis reported a portability problem - on Macs without mmap, fixed it. - -Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * testXPath.c : added a --tree option allowing to display the - tree dump of the XPath expression - -Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed a memleak when comparing nodesets - * HTMLtree.c: don't invent the HTML doctype if not available (XSLT) - * tree.c: added a TODO - -Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in Makefile.am config.h.in xmlversion.h.in: detect if - we need string functions - * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions - to be able to use them where needed. Applied some changes - to reduce name linking pollution and compile in only what's - needed. - * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c - xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef - for the string manipulation functions - * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically - to the free() function of xmlmemory.c - * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c - xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP - usage. - - -Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * error.c: applied the context output patch of the error - handling submitted by Chuck Griffith - * error/VC/*: this slightly change some error logs - -Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed line number reporting on error - -Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: Sullivan and Darin found a parser bug, - applied the patch. - -Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c - testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c - xmlversion.h.in xpointer.c: of course the way I defined - UNUSED breaks on old gcc version. Try to be smart and - also define it directly in xmlversion.h - * configure.in: removed -ansi flag from the pedantic set - -Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - Huge cleanup, I switched to compile with - -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit - -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat - -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow - -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return - -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline - * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch] - encoding.h entities.c error.c list.[ch] nanoftp.c - nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c - testSAX.c testURI.c testXPath.c tree.[ch] uri.c - valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c - xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c: - Cleanup, staticfied a number of non-exported functions, - detected and cleaned up a dozen of problem found this way, - avoided a lot of public function name/typedef/system names clashes - * doc/xml.html: updated - * configure.in: switched private flags to the really pedantic ones. - -Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: 2.3.5 - * doc/html/*: rebuilt the docs - -Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed a reported bug in NOTATION parsing - * uri.c: accepted but not fixed bug 51876, added TODO - * Makefile.am: fixed bug 51876 - -Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * config.h.in configure.in error.c: fix a compilation problem - on platforms without vsnprintf (xml@thewrittenword.com) - -Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed a function name header typo - * SAX.c: notations can also occur in external subset. - -Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * error.c: removed a C++ like comment - -Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixing bug 52299 strange condition leading - to a parser crash due to a buffer overflow - * result/noent/attrib.xml result/attrib.xml test/attrib.xml: - added the specific test case - -Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.[ch]: still a lot of cleanup based on XSLT, added - xmlXPathConvert{String,Number,Boolean} to be able to make - type casts without a context stack, fixed some implementation - problems related to the absence of context at parse-time, - added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr() - in the public API too - * xpointer.c xpathInternals.h: we need to know at parse time - whether we are compiling an XPointer - -Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.[ch] xpointer.c: restaured the Binary and API compatibility - cleaned up the parser internals, refactored XPath code, added - new compilation based APIs and cleanly separated public and - private APIs. - -Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.h: the comp field must be added at the end to avoid - killing binary compat. - -Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: detect XPath memleaks in regreson tests - * error.c: fixed and error w.r.t. error reporting still using - stderr - * hash.c: added new line at end of file - * tree.h: minor cleanup - * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath - expression parsing from evaluation, resulted in a number of - changes internally, and in XPointer. Likely to break stuff - using xpathInternals.h but should remain binary compatible, - new interfaces will be added. - -Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: fixed a couple of problems reported by - okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling - without gcc on non linux platforms. - -Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested - a fix for --with-html-dir= configure support. I hope it won't - break rpm generation - -Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: one function comment cleanup. - -Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * SAX.c: external subset notations were improperly registered - in the internal subset. - -Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * README.cvs-commits: added, pointing to HACKING - * HACKING: updated - -Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: and Matt Sergeant found one in the XML push - parser (erroneous check I forgot to remove when I fixed the - main parser). - -Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: ptittom found a small bug in UnaryExpr - -Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: bumped to 2.3.4 - * error.c: fixed bug #51860 - * tree.c: fixed bug #51861 - * valid.c: cleanup, more debug, failed to fix one bug crap ... - * tree.[ch] : added xmlDefaultBufferSize - * nanoftp.c: typo in function name header block - * doc/xml.html : updated, added link to XML::LibXSLT - * doc/html/* : rebuilt the docs - -Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c SAX.c: the new content parsing code raised an - ugly bug in the characters() SAX callback. Found it - just because of strangeness in XSLT XML Rec ouptut :-( - -Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: Martin Baulig suggested to add -lm - * tree.c: found another bug in xmlNodeGetContent() - -Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: Bjorn found the error related to strictness of comparison. - -Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: trying to fix the Dtd parsing problem reported - by Gary, side effect of last week speed optimizations. - -Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg - * parserInternals.c: removed unneeded test raised by Stric - -Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net> - - * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported - and fixed by William Brack). Added xmlXPathFormatNumber. - Changed the sorting slightly. - * configure.in Makefile.am example/Makefile.am: Added -lm. - Please note that applications linking with libxml2, must - also like with the math library from now on. - -Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: fixed loop reported by Marc Sanfacon - -Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: one must report spaces even if the Dtd element - content proves that this is not part of the element content. - * result/valid/*.xml: this changed the ouptu slightly - -Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: bumped to 2.3.3 - * doc/xml.html: updated - -Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: minor doc fix - * xpath.c: deallocation issues when a result tree has been - converted to a node-set - -Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: oops corrected dates s/2000/2001 - -Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: new patch from Gary Pennington - -Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: applied patch from Ankh - -Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xinclude.c: fixed a problem building on Mac - -Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: more work on increasing parsing ferformances - -Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c - xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c: - avoiding memcpy in production builds MEM_CLEANUP macro use - * parser.[ch] parserInternals.c: optimizations of the tightest - internal loops inside the parser. Better checking of I/O - flushing/loading conditions - * xmllint.c : added --timing - -Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: bumped to 2.3.2 - * doc/xml.html: updated for release - -Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: found a memleak and fixed a nasty bug - -Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmllint.[c1] : added return code errors for xmllint - * xpath.c: specific debug dump function for result value trees - -Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: finally implemented xmlXPathCompareNodeSets - * test/XPath/expr/floats results/XPath/expr/floats: added - a test for float expressions - -Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed xmlNodeGetContent, it was not recursing on child - * parserInternals.[ch]: trying to speed up parsing - * xpath.c : speeded up node set equality op - -Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am valid.c list.[ch]: Gary Pennington provided a - better handling of ID/IDREF and the list modules associated - * configure.in: small CFLAGS cleanup - -Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: fixed iconv detection on AIX (stric) - -Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed "*" (unbelievable !) and a couple of warnings - -Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net> - - * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber, - and optimized xmlXPathNodeSetSort - -Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: bug fix when context size is 0 - * parser.c: I like Norm's Dtd because they still manage to break - the parser occasionally - -Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now - -Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.[ch] parser.c xpath.c: fixed the problem of addressing - attributes within the XML-1.0 namespace - -Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpathInternals.h: exported a few axis functions - * doc/xml.html: updated the doc - -Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: applied patch from Daniel van Balen for OpenBSD - and bumped version to 2.3.1 - * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the - attempt to find autoclosing was simply broken, removed it, - updated the examples, this is better - -Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * hash.[ch]: added Paolo Casarini patch to provide Delete from - hash functionnalities. - * doc/html/* : rebuild the doc - -Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and - on predicate - * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err - result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one - really want to have tags closed on output even if we accept - unclosed ones on input - -Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: ouch don't free NULL, rare case fixed - * tree.c: don't coalesce text nodes if they don't have the - same behaviour wrt escaping on output - -Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: small fixup - * SAX.c: don't warn on empty namespaces. - -Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * README: a bit of cleanup - * configure.in: preparing for 2.3.0 release - -Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * hash.[ch]: added a first version of xmlHashSize() - * valid.c: another bug fix from Gary Pennington - -Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * valid.c: couple of bug fixes pointed by Gary Pennington - * HTMLtree.c: #if 0 cleanup - -Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique() - which removes a time consuming check of xmlXPathNodeSetAdd() - and use it in places where we are sure to not break unicity - -Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: bug fixes found from XSLT - * tree.c: preserve node->name special values when copying nodes. - * parserInternals.[ch] parser.[ch] SAX.c : added a mode where - external subset are fetched when available but without full - validation. Added xmlLoadExtDtdDefaultValue, need a function. - * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML - output with encoding disabled. - -Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmliO.c: Harry Blundell pointed out that xmlCheckFilename - xmlCheckFilename should not be called from xmlFileOpenW - and xmlGzfileOpenW - -Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith - * test/URI/smith.uri result/URI/smith.uri Makefile.am: - added the new tests for URI normalization - * testURI.c: fixed stoopid bugs - * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration: - the URI in the error messages are now properly normalized - -Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath - -Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing - -Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed mod operator - -Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c: fixed xmlStrcat doc - * tree.c: 2 fixes form Anders Carlson for copying nodes and - trees. - -Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c result/XPath/tests/chaptersbase - result/XPath/tests/simplebase: fixed XPath node() - * tree.c: small fix in xmlNewNs() - * Makefile.am: removed extraneous xml2Conf.sh rule - -Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am configure.in libxml.spec.in example/Makefile.am: - Changed the library name, in order to get libxml-devel and - libxml2-devel to coexist on a single system - * xml-config.1 xml-config.in xmlConf.sh.in: renamed - * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files - -Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am configure.in libxml-2.0.pc.in: started working on getting - libxml2-devel installable in // as libxml-devel. - -Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/Makefile.am: fixed make rebuild in doc - * doc/html/*.html: rebuilt the docs - -Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: patch from Bjorn Reese on xmlBufferCCat - -Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get - the HTML doc to go into the -devel RPM ... - * aclocal.m4 config.h.in: some updates due to auto* magic - -Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.h: added a hook in the context structure allowing to - link to extra support, needed for XSLT - -Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed - xmlXPtrCmpPoints to use it. - * propagated the following patch from Alejandro Forero - * include/win32config.h xmlIO.c: applied further suggestions - from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup - * example/gjobread.c: fixed warnings, now that it builds - -Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com> - - * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks. - - * xmlIO.c (xmlCheckFilename): Function added to know whether a given - filename points to a valid file (not a directory). - * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW): - Added calls to xmlCheckFilenameDir. - - * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass - `path' (rather than `filename') as the parameter to gzopen and open. - -Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: fixed a problem with EXTRA_DIST - -Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am example/Makefile.am: finally found the trick - to build the example, i.e. add "." in SUBDIRS before example - in the list <grin/> - -Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * doc/xml.html: updated with an XSLT section, removed pointer to - W3C CVS base. - -Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: when copying a XSLT tree object teh tree need to be copied - too, and deallocation need to occur the same way. - -Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE - type correponding to an XSLT result tree fragment. Share most - of the data format with node set, as well as operators. - * HTMLtree.c: added a newline at the end of the doctype output - whe this one is not present initially. - * tree.c: make sure taht the parent and doc pointers are properly - set when copying attributes (lists). - -Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput - -Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: seems I finally killed that ugly path evaluation - context bug (tagged 9999 in case is is wrong) - -Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup() - for XSLT - -Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix - for xmlGzfileOpen() bug - -Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: removed an error found by XSLT usage - * tree.c parserInternals.h: use a predefined static string - for text and comment nodes, avoid freeing them in xmlFreeNode, - exported the string name in parserInternals.h and added - another value to disable encoding at output (for XSLT), - gain memory, time. - -Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * win32/README.MSDev win32/libxml2/libxml2_a.dsp - win32/libxml2/libxml2_so.dsp: new makefiles and update - provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de> - -Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from - Gary Pennington - -Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xpath.c: fixed the comaprision of values and nodelists, - need to compare nodelist still ... - * debugXML.c: avoided a possible core dump - * HTMLparser.c: cleanup - * nanohttp.c: contributed fix. - * tree.c: fixes in properties handling added xmlSetNsProp - needed by libxslt - * xpathInternals.h: exported xmlXPathBooleanFunction, added a - comment - * TODO: updated - -Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * parser.c parserInternals.c: applied Bjorn Reese optimization - patch - -Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * Makefile.am: applied patch fro make check from Martin Vidner - -Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * configure.in: preparing 2.2.11 - * doc/html/*: rebuild the HTML files - * doc/xml.html : updated - -Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * tree.c: fixed a stupid bug - * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com> - patches related to validation of an XInclude processing result - * TODO: updated - -Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon - on large files - -Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmlIO.c: fixed xmlParserInputBufferCreateMem doc - -Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue, - reported by Jonas Borgström - * nanohttp.c: Applied Bjorn Reese' IPV6 first patch - -Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * testXPath.c xpath.c: fixing the XPath union expressions problem - reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz> - -Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - - * xmllint.c: Made is so if the file name is "-" is will read form - standard input. Sven Heinicke <sven@zen.org> - * tree.c: fixed a problem when growing buffer - * tree.h: fixed the comment of the node types following andersca - comment - * TODO: updated - -Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.[ch]: added a way to avoid adding automatically - omitted tags. htmlHandleOmittedElem() allows to change the - default handling. - * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and - xmlDocDumpFormatMemoryEnc(), uses memory functions for output - of xmllint too when using --memory flag, added a memory test - suite at the Makefile level. - * xpathInternals.h xpath.[ch] xpointer.c: fixed problems - with namespace use when encountering QNames in XPath evalation, - added xmlns() scheme in XPointer. - * nanoftp.c : incorporated a fix - * parser.c xmlIO.c: fixed problems raised with encoding when using - the memory I/O - * parserInternals.c: closed bug 25934 reported by - torsten.landschoff@innominate.de - * TODO: updated - -Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in doc/html/* doc/xml.html: made a 2.2.9 release - on a non-updated tree :-(, made a 2.2.10 release to correct the - situation - -Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c - parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am: - integrated a set of OpenVMS changes from Howard Taylor - <Howard.Taylor@pacoast.com> - -Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll - * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net> - -Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: some fixes on auto-open of html/head/body - * encoding.c: fixed a compilation error on some gcc env - * xpath.c xpointer.[ch] xpathInternals.h: improved the - XPointer implementation - * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added - related XPointer tests and associated results - -Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xmldtd.html doc/xml.html: following a short step by step - guidance on IRC to help maciej with DTDs I started a small - page on the subject. - -Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: fixed handling of broken charrefs - * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows - patches - -Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html doc/html/* : rebuilt the docs after adding - xinclude and updated page for 2.2.7 and 2.2.8 - * configure.in: releasing 2.2.8 - -Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch] parserInternals.c: applied the conditional - section processing fix from Jonathan P Springer - <jonathan.springer2@gte.net> - * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS - project file, fixed iconv default non support - * xpath.c: fixed the problem of evaluating relative expressions - when a node context is provided. - -Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c: fixed gcc 2.95 new warnings - * SAX.c: fixed a stupid bug - * tree.c: fixed a formatting problem when round-tripping - from/to memory - * xinclude.c: chased memleak, fixed a base problem - * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ? - xmlXPtrBuildNodeList() - * TODO: updated - * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude: - adding a first small set of regression tests for XInclude - -Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.[ch]: applied Wayne Davison patches to access - the WWW-Authorization header. - * parser.c: Closed Bug#30847: Problems when switching encoding - in short files by applying Simon Berg's patch. - * valid.c: fixed a validation problem - * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h - xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from - Wayne Davison - * xpointer.[ch]: added first version of xmlXPtrBuildNodeList() - need to be extended to non full nodes selections. - * xinclude.c: starts to work decently - -Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c - debugXML.c xmlversion.h.in: Started adding XInclude support, - this is a new xmllint option - * tree.c xpath.c: applied TOM patches for XPath - * xpointer.c: fixed a couple of errors. - * uri.c: added an escaping function needed for xinclude - * testXPath.c hash.c HTMLtree.c: minor cleanups raised by - new warning from RH70 gcc's version - -Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: fixed loop on invalid char in scripts - * parser.c: update to description of xmlIOParseDTD() - * libxml.m4 xmlversion.h.in: changes contributed by - Michael Schmeing <m.schmeing@internet-factory.de> - * configure.in: preparing for 2.2.7 - * Makefile.am: trying to avoid config.h and acconfig.h - being included in the distrib - * configure.in: released 2.2.7 - -Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's - like namespaces for good. Unified xmlNs and xmlNode somewhat. - -Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch]: added xmlIOParseDTD() - * xpointer.c: added support for the 2 extra parameters of - string-range, fixed a stoopid error when '0' was present - in XPointer expressions - * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added - testsuite for the above - -Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * libxml.spec.in: improved package descriptions - -Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c xpathInternals.h: applied a large cleaning patch - from TOM <ptittom@free.fr>, it also add namespace support - for function and variables registration. - -Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c: Wayne Davison's patch fixing xmlBuildURI() - * Makefile.mingw: Wayne Davison's update adding hash.c - -Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c: fixed the root evaluation problems - * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non - ignorable spaces with <b> <bold> <em> - * tree.c: fixed a loop in xmlSearchNsByHref() - -Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c: applied another XPath patch from TOM - * xpath.c include/makefile.am: applied another patch from - china@thewrittenword.com (cleanup on IRIX). - -Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xml-config.1: received a fixed version from Fredrik Hallenberg - <hallon@lysator.liu.se> - -Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr> - cleanup patch for XPath - -Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * patched to redirrect all "out of context" error messages to - a reconfigurable routine. The changes are: - * xmlerror.h : added the export of an error context type (void *) - an error handler type xmlGenericErrorFunc there is an interface - xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler); - to reset the error handling routine and its argument - (by default it's equivalent to respectively fprintf and stderr. - * all the c files: all wild accesses to stderr or stdout within - the library have been replaced to calls to the handler. - -Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: release 2.2.6 - * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h - exporting the inner functions of xpath for extension modules - * doc/*: updated and rebuilt the doc - -Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.c : applied Wayne HTTP cleanup patch - * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase() - and xmlNodeSetSpacePreserve() - -Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c: closing bug #29260 - -Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * hash.[ch] debugXML.c: expanded/enhanced the API, added - multikey tuples, made hash structure opaque - * valid.[ch]: moved elements, attributes, notations decalarations - as well as ID and refs to hash tables. - * entities.c: hash cleanup - * xmlmemory.c: fixed a dump problem in debug mode - * include/Makefile.am: problem passing in DESTDIR= values patch - from Marc Christensen <marc@calderasystems.com> - * nanohttp.c: removed debugging remains - * HTMLparser.c: the bogus tag should be ignored (Wayne) - * HTMLparser.c parser.c: fixing a number of problems with the - macros in the *parser.c files (Wayne). - * HTMLparser.c: close the previous option when opening a new one - (Marc Sanfacon). - * result/HTML/*: updated the HTML results accordingly - -Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked - hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched - XPath functions and XML entities table to them. More to come... - * xmlIO.c: fixed libxml closing FILEs it didn't open. - -Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: coalesce adjacent text nodes - * valid.c: handling of blank nodes in DTd validation (raised - by problems with a posteriori validation). - * nanohttp.c: changing behaviour on HTTP write stuff. - * HTMLtree.c: forced body and html to be explicitely closed. - * xpath.h: exported more XPath functions. - -Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * Release of 2.2.5 - * xpointer.c: range() range-inside and other helper functions - * parserInternals.c: fixed perf problem raised by rolf@pointsman.de - -Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.c: HTML attributes need normalization too (Bjorn Reese) - * HTMLparser.[ch]: addded htmlIsScriptAttribute() - -Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/*: rebuilt docs preparing for 2.2.5 release, added URI - and XPointer modules - -Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.h: closed #25107 - -Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * testSAX.c: fixed problem with cdata reporting - * SAXresult/* : updated - -Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c test/wap.xml result/noent/wap.xml result/wap.xml: - Closed bug #27499, added to regression tests - * TODO: updated - -Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML - support for SCRIPT and STYLE with help from Bjorn Reese - * test/HTML/* result/HTML/*: added simple testcase and updated - the existing ones. - -Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c xpointer.c: XPointer reorder of ranges start/end and - string-range for empty strings - * test/XPath/docs/str test/XPath/xptr/chaptersrange - test/XPath/xptr/strrange: augmented the XPointer testsuite - -Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html doc/xmlmem.html: added a module describing memory - interfaces and use, updated the main page. - -Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch - nanoftp code work on Windows too now - -Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * testXPath.c xpath.[ch]: moved some debug functions to xpath core - * xpointer.c: implemented string-range() at least a good first version - * test/XPath/docs/str test/XPath/xptr/strrange - result/XPath/xptr/strrange: the string-range() tests - -Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am include/Makefile.am include/win32config.h - win32/Makefile.mingw: fixed problems reported by Wayne Davison - and make distcheck - -Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug - xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com> - * xpointer.c: slight extension of xmlXPtrLocationSetMerge - -Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in : - patch for socklen_t detection by - Albert Chin-A-Young <china@thewrittenword.com> - -Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs - and added a --dtdvalid option to xmllint used to test it - -Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xml-config.1 Makefile.am libxml.spec.in: adding a man page for - xml-config by Fredrik Hallenberg <hallon@lysator.liu.se> - -Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable - handlings (registration, lookup, cleanup) - -Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in Makefile.am include/makefile.am: adding XPointer - and XPtrtests target - * xpointer.[ch] : new files for XPointer support - * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and - more XPath tests - -Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: fixed, very broken, make distcheck works again - -Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * More work toward 2.2.5, integrated a number of patches - * configure.in Makefile.am win32config.h.in: trying to cleanup - make distcheck .... huh ... - * include/Makefile.am include/win32config.h: new directory - for includes - * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp - updated teh makefiles and instructions for WIN32 - * xpath.c: small fixes - * test/XPath/ results/XPath: updated the testcases and results - * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or - suggested patches - * valid.c: fixed an ID bug - -Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * moved xml-error.h to xmlerror.h: seems this allowed to bypass - the automake bug where wrong dependencies were generated. - * xpath.[ch]: worked on XPointer - -Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in Makefile.am: 2.2.5, ship the include in an - include/libxml subdirectory, use symlinks when using CVS - * testSAX.c: fixed small bug - * testXPath.c: changed the way testfiles are parsed - * debugXML.c: same kind of cleanup when parsing an argument expression - XPath/XPointers can have blanks embedded - * xpath.[ch]: more cleanup, reorgs for XPointer work - * parserInternals.c parser.c HTMLparser.c: fixed wrong include - * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff - -Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness - in the XPath engine, rewrote large parts of it, now it's far - cleaner and in sync with the REC not an old WD. Fixed a parsing - problem in the interactive XML shell found when testing XPath. - -Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer, - incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath - examples with the extra test - -Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved - the global init function. - -Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: Doohhh, attribute name parsing was still case - sensitive ! Fixed this ... - * result/HTML/* : updated the tests results accordingly - -Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation - engine, should be far more stable, incorporated a new version of - preceding/following axis, need testing - * uri.c: fixed file:///c:/a/b/c problem - * test/XPath/tests/idsimple: augmented the XPath tests - -Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/* rebuilding docs for 2.2.4 release - -Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: releasing 2.2.4 - * parser.[ch]: added xmlStrEqual() - * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c - tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to - use xmlStrEqual instead - * TODO: updated - * added an XPath test - -Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: fixed htmlStartCloseIndexinitialized init - * entities.h: exported xmlInitializePredefinedEntities - * parser.[ch] : added xmlInitParser() - * parserInternals.h : had to export htmlInitAutoClose() - -Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.[ch] : fixed some serious XPath Predicate evaluation - problems - * Makefile.am : added XPath regression tests to normal tests - * uri.c: fixed a problem with local paths, cleanup - * parser.c: fixed a problem with large CData sections - -Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in xml-config.in: patch from "Ben Taylor" - <sol7x86@hotmail.com> for solaris shared libs lookup - -2000-09-30 Martin Baulig <baulig@suse.de> - - * libxml-2.0.pc.in: Provide pkg-config script. - - * configure.in: Create the libxml-2.0.pc script from the - libxml-2.0.pc.in templates. - * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc - script in `$(libdir)/pkgconfig'. - -Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning - when compiling with MSC - -Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c: patch for normalize-string() substring-before(), - substring-after() and translate() functions from Bjorn Reese - <breese@mail1.stofanet.dk> - * libxml.m4 Makefile.am: added libxml.m4 from Debian ? - Fredrik Hallenberg <hallon@lysator.liu.se> - * TODO: updated - -Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the - problem of socklen_t being undefined on a number of platforms - * debugXML.c: fixed a compilation problem when without snprintf - -Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting - an URI bug and a fix for the control-character-induced infinite loop - * nanohttp.c: preventive fix for compiling on WIN32 - -Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlint.c: closing bug #25000 - -Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public - * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and - modified slightly Wayne Davison patch adding xmlStrcasecmp and - related function, fixing xmlStrncmp(), and associated cleanup - * result/HTML/entities.html.sax: updating result - -Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c: applied patch for URI escaping from Wayne Davison - <wayned@blorf.net> - * tree.c parserInternals.c HTMLparser.c: memset checks patches - from Denis Barbier <barbier@imacs.polytechnique.fr> - * HTMLparser.c: UTF8 characters in HTML tag-attribute values - patch from Wayne Davison - -Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html : updated with new releases, adding "how to help" - -Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c: - removed a few warnings in pedantic mode ... - * parserInternals.c parser.c: moved encoding switching function - to parserInternals.c - * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3 - -Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c parser.c: set ctxt->errNo before calling the - error or warning handlers - -Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parserInternals.c parserInternals.h parser.c Makefile.am: - created a new module parserInternals.c, moved most of the - code shared by the various parsers there, as well as - deprecated code from parser.c. More cleanup of parser.c - * uri.c: fixed a problem when URI is NULL - * valid.c: speedup when looking for an attribute declaration - -Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished - the cleanup of the computation of URI references when seeking - external entities. The URI reference string and the resulting - URI are both stored now. - * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c: - large s(n)printf checks and cleanup from Denis Barbier - <barbier@imacs.polytechnique.fr> - * xmlversion.h.in tree.h: couple of SGML declarations for a - possible docbook module. - * result/VC/ : a couple of test output changed due to the change - of the entities URI - -Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.h: added a _private field for linking user's data - -Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c parserInternals.h: demacroified most of the IS_XXX - the gain in size is significant so ... - -Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * entities.c: cases where looking up entities with doc==NULL - covered - -Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c: applied Wayne Davison patch - * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests - -Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c testUri.c: applied Wayne Davison patches - * test/URI/uri.data result/URI/uri.data: first set of tests/results - * Makefile.in: added URItest and included thenin "make tests" - -Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlversion.h.in: closed bug 22941 - -Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xmlio.html: added doc and example for entity loader - redefinition. - -Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism - used by libxml - -Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: Fixed bug on invalid ontent characters and when using - push. - * xmllint.c: fixed xmllint endling of errors in push mode - -Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c testHTML.c: applied two new patches from - Wayne Davison <wayned@users.sourceforge.net> - * result/HTML/*.sax: regenerated HTML SAX output - * parser.c: more cleanup. - -Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.[ch] testHTML.c: applied the second set of - patches from Wayne Davison <wayned@users.sourceforge.net>, - adding htmlEncodeEntities() - * HTMLparser.c: fixed an ignorable white space detection bug - occuring when parsing with SAX only - * result/HTML/*.sax: updated since the output is now HTML - encoded... - -Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.[ch]: applied some of Wayne Davison - <wayned@users.sourceforge.net> patches - -Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.c tree.c debugXML.c: fixed bogus behaviour when an - undeclared namespace prefix was used, added a warning. - Cleaned up support w.r.t. entities, spilling out a warning - and being pedantic on lookups. - * test/warning/ent9 : added testcase for previous example. - * TODO: updated - * parserInternals.h parser.c: changed the way names are parsed - now allow infinite size and decrease penalty for normal use - * parser.c: Started a big cleanup/check of the parser code, - fixed some of the most tortuous entity code, spotted code - unused anymore - * test/*: added tests for very long names and related nasty - things. - -Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/encoding.html: added encoding aliases doc - * doc/xml.html: updates - * encoding.[ch]: added EncodingAliases functions - * entities.[ch] valid.[ch] debugXML.c: removed two serious - bottleneck affecting large DTDs like Docbook - * parser.[ch] xmllint.c: added a pedantic option, will be - useful - * SAX.c: redefinition of entities is reported in pedantic mode - * testHTML.c: uninitialized warning from gcc - * uri.c: fixed a couple of bugs - * TODO: added issue raised by Michael - -Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/encoding.html: propagated Martin Duerst suggestions - -Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: Fixed Bug#21552: libxml fails to decode & - * uri.c testUri.c patches, by Marc Sanfacon (1 left) - * parser.c HTMLparser.c: HTML/encoding push problems reportedi - by Wayne Davison - -Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c nanohttp.c: small cleanup - * TODO: updated - -Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * added an old VC testcase and updated title.xml entity - -Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work - done on auto-opening of <p> tags and cleanup of SAX output - -Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages - -Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html libxml.* structure.*: updated the doc a bit - -Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * testSAX.c testHTML.c result/HTML/: cleanup of the output - of SAX tests - -Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * Patch from Albert Chin-A-Young <china@thewrittenword.com>: - * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0 - -Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * Patch from Dave Yearke <yearke@eng.buffalo.edu>: - * testHTML.c: fix core dump on Solaris 2.x systems - * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL - * result/HTML/*.sax: previous bug fix lead to new results - -Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * Patch from Albert Chin-A-Young <china@thewrittenword.com>: - * configure.in: added --with-readline=DIR to accept alternate - path for readline include/library - * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE - for ANSI under HP-UX - * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@ - includes @LIBS@ - -Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/* : rebuilt the docs - * getting ready for 2.2.2 release - -Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature() - and xmlAddFeature() - * tree.[ch]: added xmlAddChildList() - * xmllint.c: MAP_FAILED macro test - * parser.h: added xmlParseCtxtExternalEntity() - * valid.c: applied bug fixes removed warning - * tree.c: added CDATA block to elements content - * testSAX.c: cleanup of output - * testHTML.c: added SAX testing - * encoding.c: better error recovery - * SAX.c, parser.c: fixed one of the external entity processing - of the OASis testsuite - * Makefile.am: added HTML SAX regression tests - * configure.in: bumped to 2.2.2 - * test/HTML/ result/HTML: added a few of HTML tests, and added the - SAX results - -Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: patch for HP compiler - -2000-08-04 Sven Heinicke <sven@zen.org> - - * xmllint.c: Was coredumping sometimes when the file given didn't - exist. - -Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c xmlIO.[ch]: fixed the problem of encoding support - - when using in memory parsing. Need some cleanup. - * xmllint.c configure.in: added a --memory flag to test memory - parsing - -Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.c: fixed socklen_t replacement to unsigned int - * parser.c: fixed a space handdling missing at the end of - production 28 DOCTYPE. - * xmlmemory.c: fixed a stupid bug on the routine to override - allocation functions - * TODO: updated - -Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/ regenerated the docs - -Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/encoding.html doc/xml.html: added I18N doc - * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding - improvements, both parser and filters, added ASCII & HTML, - fixed the ISO-Latin-1 one - * xmllint.c testHTML.c: added/made visible --encode - * debugXML.c : cleanup - * most .c files: applied patches due to warning on Windows and - when using Sun Pro cc compiler - * xpath.c : cleanup memleaks - * nanoftp.c : added a TESTING preprocessor flag for standalong - compile so that people can report bugs more easilly - * nanohttp.c : ditched socklen_t which was a portability mess - and replaced it with unsigned int. - * tree.[ch]: added xmlHasProp() - * TODO: updated - * test/ : added more test for entities, NS, encoding, HTML, wap - * configure.in: preparing for 2.2.0 release - -Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c: fixed the way the control connection is handled - * libxml.spec.in: fixed the dependencies and cleanup - -Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html: changed the xmlsoft.org structure, updated the - examples w.r.t. root and childs - -Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * libxml.spec.in: fixed bug #7419, dependencies fouled for libxml-devel - -Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: Work on character encoding support for the HTML parser - * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser - * encoding.c: Fixed a potential memleak in the encoding stuff - -Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/FAQ.html doc/Makefile.am : added a FAQ - -Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup - of the HTML parser to force it to not bypass SAX - -Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * win32config.h.in: updated - * xmlversion.h.in: crap forgot to update this, this mean 2.1.0 - lacks iconv support :-( need to release 2.1.1 - * configure.in: release 2.1.1 - * HTMLparser: fixed bug #14784 - * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised - by Windows compiler - * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in - the SAX startDocument() callback. - * TODO: updated - -Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * added xmlStopParser() - -Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: 2.1.0 prerelease - * Large resync between W3C and Gnome tree - * nanoftp, nanohttp.c: fixed stalled connections probs - * HTMLtree.c SAX.c : support for attribute without values in - HTML for andersca - * valid.c: Fixed most validation + namespace problems - * HTMLparser.c: start document callback for andersca - * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology - * parser.h, SAX.c: serious speed improvement for large - CDATA blocks - * encoding.[ch] xmlIO.[ch]: Improved seriously saving to - different encoding - * example/Makefile.am example/gjobread.c tree.h: work on - libxml1 libxml2 convergence. - * config.h.in parser.c xmllint.c: added xmlCheckVersion() - and the LIBXML_TEST_VERSION macro - -Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html: various patches and improvements typo fixed by - Felix Natter - * doc/libxml-doc.el: Emacs module to lookup the libxml documentation - from Felix Natter <fnatter@gmx.net> - -Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/upgrade.html: updated with instructions for support of both - libxml-1.x and libxml-2.x - * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch - for 2.x support and also fixed includes - - -Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped - the encoding support, added iconv support, so now libxml if - compiled with iconv automatically support japanese encodings - among others. Work based on initial patch from Yuan-Chen Cheng - I may have broken binary compat in the encoding handler - registration scheme, but that was so utterly broken I don't - expect anybody to have used this feature until now. - * parserInternals.h: fixup on the CHAR range macro - * xml-error.h, parser.c: catch URL/URI errors using the uri.c - code. - * tree.[ch]: added xmlBufferGrow(), was needed for iconv - * uri.c: added xmlParseURI() I can't believe I forgot to - implement this one in 2.0 !!! - * SAX.c: moved doc->encoding update in the endDocument() call. - * TODO: updated. - -Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.h: removed extraneous xmlRemoveProp definition - * TODO: added item about --disable-corba configure switch - * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation - * nanoftp.c: fixed include problems giving troubles on AIX and - slowlaris - * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c - parser.c nanoftp.c nanohttp.c SAX.c testSAX.c : - comment and headers changes to lower gtk-doc number of warnings - * doc/html/*: rebuilt docs - -Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * HACKING: documented the tag for 1.x and instructions - -Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions - xmlNewIOInputStream, xmlParserInputBufferCreateIO, - xmlCreateIOParserCtxt - * parser.c parserInternals.h: speedup of IS_CHAR like macros, - significant overall improvement - * xmllint.c: added I/O test to xmllint - * testSAX.c: added a speed test - * doc/* : updated/regenerated - -Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.c uri.h parserInternals.h: cosmetic changes from - "Timur I. Bakeyev" <timur@bat.ru>, including making - xmlCreateURI() public - -Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess - and the code at the same time. Added a clean mechanism for - overload or added input methods: xmlRegisterInputCallbacks() - * tree.c: fixed xmlPrevSibling and xmlNextSibling per - Christophe Le Gal (Christophe.Le-Gal@imag.fr) input - * TODO: updated - * doc/* : updated/regenerated - * doc/Makefile.am: tweaks to avoid problem with libxml link in the - source dir - -Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * testURI.c: yet another forgotten commit, I should get some sleep ! - -Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmllint.c: forgot to commit this too ? - -Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlversion.h.in : forgot to commit this previously - -Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: preparing libxml-2.0.0 version looks Ok so far - * README TODO: updated for release - * uri.c uri.h: added authority parsing/saving - * uri.c testURI.c Makefile.am: moved the testing code to testURI.c - * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h - debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c - tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c - Makefile.am : added compile-time customization of libxml - --with-ftp --with-http --with-html --with-xpath --with-debug - --with-mem-debug - * *.[ch] autoconf.sh : moved to an absolute adressing of includes : - #include <libxml/xxx.h> I hope it won't break too much stuff - and will be manageable in the future... - * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c - and added xmllint to the installed programs - * uri.h: added xmlFreeURI() - -Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * uri.c uri.h: finished the escaping handling, the base support - and the URI path normalization. Looks good just lacks the - authority content parsing code. - * Makefile.am: added instructions to generate testURI - * TODO: updated - * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated, - added links and icons for W3C and Gnome - -Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlmemory.[ch] : seems I forgot to actually update the files in - the last commit :-) - * doc/xml.html doc/html/* : updated and uploaded the docs - -Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS) - * TODO: updated - * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override - libxml default allocation function with another set (like gmalloc/ - gfree). - * Makefile.am, uri.c, uri.h: added a set of functions to do - exact (litteraly copied from the RFC 2396 productions) parsing - and handling of URI. Will be needed for XLink, one XML WFC, - XML Base and reused in the nano[ftp/http] modules. Still work - to be done. - -Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, libxml.spec.in : libxml2 - * doc/* : updated the doc page, rebuilt the docs - -Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * all: tagged LIB_XML_1_X - * *.c *.h : updated from W3C CVS tree - * configure.in : 2.0.0-beta - * libxml.spec.in : libxml2 package nam - * result/* : new version of the tests output - -Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html, doc/update.html: updated docs, 1.8.7 - -Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/* : rebuilt the docs - * parser.c: final patch on #6766 - * valid.c: small patch on validity checks. - -Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x - added - * parser.c: adding xmlKeepBlanksDefault() as a way to manage - compatibility w.r.t. XML spec and existing code. - -Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: seems a better solution to <a> </a> exists, - will try it for a while - -Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: tried to remove the <a> </a> generating <a/> - this is hard. Left a flag for that purpose. Fixed bug #6766 - * configure.in: prepared 1.8.7 not released, due to previous - problem - -Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html : applied second patch from Paul DuBois - -Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html : applied patch from Paul DuBois - -Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c HTMLparser.c: do a bit of bufferization in push mode. - -Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed - compilation warnings on various platforms. - * parser.c: Fixed #5281 validity error callbacks are now desactived - by default if not validating. - -Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c, win32config.h.in: patches to compile on WIN32 - -Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos - <gkatsi@cs.toronto.edu> - -Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when - processing URLs - -Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added - xmlNanoFTPUpdateURL for persistent control connections. - * configure.in: 1.8.6 - -Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support - * tree.[ch] : added xmlSaveNoEmptyTags - -2000-01-29 James Henstridge <james@daa.com.au> - - * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP. - - * Makefile.am: added nanoftp.[ch] to the build. - -Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.[ch]: cleanup, comments, API - * debugXML.c : fixed a bug in the cat command - * doc/*: regenerated the docs - -Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation - * debugXML.c : fixed a bug in the cat command - * valid.c: fixing some small probs - * libxml.spec.in: get rid of the SNAP suffix - * doc/xml.html: updated the status - -Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * xml-config.in: xml-config --version to just return the - version number - * xpath.c: some cleanup w.r.t. axis when the current node is - an attribute. - * TODO: updated - -Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: prepared for libxml-1.8.5 - * doc/* recompiled the documentation - -2000-01-17 Jody Goldberg <jgoldberg@home.com> - - * configure.in : WARNING autoconf subtlety alert : - Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER - when looking for zlib.h so that HAVE_ZLIB_H is defined. - * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will - get defined by AC_CHECK_HEADERS. - -Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: fixed a hideous bug in xmlGetProp() thanks to - Rune.Djurhuus@fast.no - -Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * TODO: updated - * tree.c, parser.c: made sure that only memory alloc problems - and internal parser errors are allowed to write to stdout or - stderr. - -Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c : restored xmlNewGlobalNs since this seems used by - a lot of existing code :-(, fixed a bug in xmlNewNs - * nanohttp.c: fixed a problem with INCLUDE_WINSOCK - * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls - to exit() from the library code. - * xpath.c, parser.c: removed bugs or unused code detected by - Windows compilers - * parser.c: started adding interfaces for parsing well balanced - XML fragments - * configure.in: releasing 1.8.4 - * doc/* : rebuilt the docs - -Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] : added xmlNewDocFragment() for DOM - * testHTML.c: uninitialized variable. - -Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/* : rebuild the docs - -Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * acconfig.h: readline and history patch - * valid.[ch]: added xmlRemoveID() and xmlRemoveRef() - * tree.c: added check and handling when possibly removing an ID - * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing - and saving. - * test/HTML/entities.html result/HTML/entities.html* : test for - various entities reference cases - * result/HTML/* : as a result output of some testcase have - changed - * HTMLparser.c, parser.c: fixed a bug in the push mode triggered - by previous example. added xmlParseTryOrFinish(). - * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h - entities.h debugXML.h HTMLparser.h: changed the way struct are - declared to allow gtk-doc to expose those - * parser.c: closed bug #4960 - * Makefile.am configure.in: Applied patch from - Albert Chin-A-Young <china@thewrittenword.com> for better zlib - and math/socket libs detection - -Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, Makefile.am: link tester against readline - * doc/xml.html doc/*/*: updated and rebuilt the documentation pages - -Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch]: added xmlRemoveProp - * win32config.h.in nanohttp.c: avoid including the Windows - socket stuff in every C files - * parser.c: removed an indetermination xmLDecl/PI(xml...) in - the XmL parser(s) - * test/ns4 result/ns4 etc...: added test case for previous prob - * tree.c: xmlNewNs wasn't checking for double definition - * Makefile.in: fixed a problem with dist-hook duplicates - * parser.[hc], xmlIO.c: fixed the loading of external entities - APIs, now xmlLoadExternalEntity() is used everywhere and - setting up an app specific front-end using the - * SAX.c parser.c: some fixes, now the xhtml spec validates - with the xhtml DTD. - * error.c: fixed crashes in case of no input stream - * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds - to the validation tests and results - -Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser - too htmlCreatePushParserCtxt() and htmlParseChunk() - * parser.c: a bit of cleanup. - * SAX.c, HTMLparser.c: some attributes may not have values (contrary - to XML) removed the last mem leak known - * HTMLtree.c: output message cleanup - * xmlmemory.c: display content info about memory blocks - * result/HTML/wired.* : missing att value warning change - -Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/* : rebuilt the documentation - -Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch] parserInternals.h: Push parser for XML, - seems to work fine now - * tester.c debugXML.[ch]: Added an XML shell debug facility and - --push for push testing - * xpath.[ch] : cleaned up for Shell usage, added missing APIs - * testSAX.c: added --push - * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the - subtree - * xmlIO.[ch] : enriched API + fixes for push mode - * entities.[ch]: added the entity content length to the struct. - * xmlmemory.[ch]: new API to show the last entries for the shell - * valid.c: added required attribute testing - * SAX.c: the cdata callback now merge contiguous fragments - * HTMLparser.c: cleanup of some macros - -Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: fix for PIs name starting with xml - * tree.c: fixed a potential problem with || and && ops - * *.c, configure.in win32config.h.in : generate win32config.h for - those on the Other Side ! - -Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: fixed a stupid = vs. == bug :-( - * doc/gnome-xml.sgml: s/glade/xml/ - -Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, doc/xml.html : bug fix release 1.8.2 - * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h : - Hopefully the end of that silly C++ include problem - * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling, - xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement - * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid - troubles with autoclosed elements when the stree shape doesn't - follow the DtD specs. Added htmlIsAutoClosed() and - htmlAutoCloseTag() - * result/HTML/*.htm*: Updated the HTML examples regression tests output - * SAX.c tree.c: fixed bug on defaulting namespaces on attributes - * debugXML.c: fixed a bug on printing default namespaces. - * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML - -Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * result/HTML/*.htm[l] : updated the HTML regression tests according - to the new output - * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h - HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty - problem due to intermix of extern "C" { ... } declarations for C++ - and recursive includes in the headers - -1999-12-20 Chris Lahey <clahey@umich.edu> - - * HTMLtree.c: Made it so that html nodes with a single child do - not insert a carriage return before or after the child node. - -Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, doc/xml.html : bug fix release 1.8.1 - * parser.c: fixed bug #4344 - * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h - added the glue to avoid C++ problems - * doc/* : regenerated the documentation - -Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: fixed a bug introduced in 1.8.0 and breaking default - namespace recognition, and Dia as a resul :-( - * encoding.c: closed bug #3950 - -Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * valid.c: debugging a posteriori validation, except URI expansion - stuff this should be fixed now - * parserInternals.h: fixed a bug in IS_BASECHAR reported by - Carl Nygard <cnygard@bellatlantic.net> - * tester.c: added --postvalid, cleaning of the code - * tree.[ch]: added xmlDocGetRootElement() - -Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com> - - * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround - c++ losage. - -Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, doc/xml.html : bumped to 1.8.0 - * xlink.[ch], Makefile.am : added framework for link detection - * parser.h: added nbChars to parser context, needed for cleanup. - * xmlmemory.c: removed a nasty bug when out of mem - * valid.[ch]: adding namespace support for attribute decl - * tester.c: added --debugent option - * debugXML.[ch]: added xmlDebugDumpEntities() - * parser.c: cleanup, avoiding use of CUR_PTR like plague, using - buffers instead, this was really needed, validation was breaking - in strange ways due to that. Added xmlParseStringPEReference() - and other parsing from strings functions. Entities processing - modified again, but PERef are still not handled correcly but - unless you're Eve Maller you won't notice :-) - * HTMLparser.c: large changes toward reliability, and switched to - lowercase internal tags, XHTML is lowercase, so it will help - that output is closer to next version. - * doc/* : regenerated the documentation, it is now hosted at - http://xmlsoft.org/ (same bits I just bought the domain :-) - - -Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the - doc generation - * parser.c: fixed bugs #3908 and #3937 and a memory leak - in the SAX API - * doc/*: rebuilt the doc making sure everything appears in the - HTML files - -Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in: - added the patch from Carl Nygard <cnygard@bellatlantic.net> - which allow impressive speed improvement on dataset with - large text pieces, but at the cost of broken binary - compatibility and slightly bigger memory usage. - Configure with --with-buffers to activate them, they - are protected with XML_USE_BUFFER_CONTENT define. - * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(), - goal is 0 memory left allocated once parser is no more used - * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we - call xmlCleanupParser() and xmlMemoryDump() - -Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic - * parser.[ch] encoding.[ch]: added memory cleanup routines - * parser.c: closing bug #3788 - * doc/*: rebuilt the doc - -Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(), - xmlNewTextChild() and xmlSetCompressMode() behaviour. - * tester.c: added --compress option - * doc/*: rebuilt the documentation - -Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: bugfixing, the damn thing MUST not crash even - if given /proc/kcore as input ! - * doc/xml.html doc/*: updated and rebuilt the documentation - -Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: Fixed some wrongly space collapsing code due to - a misreading of the spec. - * result/*: fixed the output accordingly - -Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * encoding.c: bug fix and typos - * xmlIO.[ch] parser.c: first bits toward real progressive parsing - * parser.c: added attribute normalization closing bug #3597 - * test/att* result/att* SAXresult/att*: testcase for attribute - normalization - -Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: closing bug #3163 by adding extra flags for the - cc compiler on HP-UX - -Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * valid.[ch] : removed a typo and an enumerated type bug in the - xmlAddElementDecl() function - * tree.c : I changed xmlSetProp() and xmlNewProp() to do the - call to xmlEncodeEntitiesReentrant() so that the functions - New, Set and Get are at the same level. - * parser.c HTMLparser.c: extra memory allocation bug for - attributes detected by someone using libxml in embedded systems :-) - -Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlmemory.h: turned off mem debug :-\ - -Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: closed bug #2784 a one line fix, but worth pushing - a new release out - * HTMLparser.c: fixed auto-close bugs on list items, zeroing - some structures, comments before and after the - main element, and other nastyness - * HTMLtree.c tree.c: accomodate the extended HTML supported - * configure.in: pushing 1.7.4 - * test/ent8 and related outputs : added a new test for bug #2784 - * test/HTML/wired.html and related output: a nasty HTML example - * Makefile.am: improved the test scripts - * docs/* : reran the documentation extractor, updated xml.html - -Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the - HTMLparser and debugged the HTML related code. HTML documents - now have their own type - * entities.c: do not dump ' for HTML output - * xmlmemory.c: improvement, breakpoint mechanism - * testHTML.c: added --sax --repeat ... - * Makefile.am: improved the HTML tests - * valid.[ch]: added xmlValidGetValidElements and - xmlValidGetPotentialChildren - * tester.c: added --insert to test the 2 new functions - * test//* result//* SAXresult//* : regression test cleanup - and extension. - * doc/html : added doc for new modules gnome-xml-xmlmemory.html and - gnome-xml-nanohttp.html - -Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: fixed problems with some autoclose tags - * tree.c: fixed XML output problems. - * result/* SAXresult/*: update of the tests output - -Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am: Arturo patch for xmlConf.sh version info - * parser.c: Tim Josling patch for single quoted items - * tester.c: Tim Josling patch for tester options usage - * tree.h: indent cleanup - -Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c parser.h : Fixed problems with HTML parsing - reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk> - -Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c : Raph patch for initialization of CORBA fields - * parser.c, xpath.c, ...: modification of doc comments - * xpath.c : allow spaces in xpath expressions - -Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlmemory.h: turning off memory debug :-( - -Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory() - better SAX interfaces. - * testSAX.c: uses the new SAX routine, avoid fetching any remote - entity. - * configure.in: 1.7.2 - -Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * libxml.spec.in: fixed the URL - * doc/xml.html: improved the documentation front-end - -Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF - -Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * libxml.spec.in: fixed the alpha compile problem - * parser.[ch]: changed errno to errNo in the parser context :-( - * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32 - * doc/xml.html: changed CHAR to xmlChar - * doc/html/*: recompiled the documentation - * configure.in: 1.7.1 - -Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.h: modified the parser context struct to regain 1.4.0 - binary compatibility - * parser.c, xml-error.h: added errno ot teh context and defined - a set of errors values with update of errno - * nanohttp.[ch]: minimalist HTTP front-end for fetching remote - DTDs and entities - * *.h, *.c: complete cleanup of the use of config.h and include - protection depending on the current setup. - * overalll debugging, maintenance and bug-fixing on all modules - * updated the documentation - * ready for 1.7.0 - -Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c : cleanup - * SAX.c valid.c valid.h: added ID/IDREF checking - * tree.c tree.h: extended doc structure for refs - * configure.in: 1.6.2 - * parser.c: patched bug in SAX user arg call - * parserInternals.h: patched missing close in C++ wrapping - * testXPath.c xpath.c xpath.h: prepared for extensibility, - especially upcoming XPointer implementation. - * doc/xml.html: augmented, typo - -Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru> - - * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" - - not all invocations of install understand -d. - -Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru> - - * Makefile.am: prepend all the test* calls with $(top_builddir) - - to make 'check' works, when builddir != srcdir. - -Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * doc/xml.html : updated the documentation - -Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase - not deallocated memory blocks - * *.c : replaces all calls to malloc() free() and realloc() to - the wrapper functions/macros - * tree.c : removed memory leaks dues to calling xmlFreeNode() - instead of xmlFreeNodeList() - -Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c: corrected a stupid bug leading to core dump at - tree deallocation. Removed warnings indicated by - Stephane.Conversy@lri.fr - * entities.c: Fixes Yet Another Stupid Bug, entities were not - looked for in the external subset - -Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c valid.[ch] xpath.c: patched compilation warnings reported - on SGI by Stephane.Conversy@lri.fr - -Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * all .h : changed the prototype declaration indent as in gtk - * most .c : working on reducing the TODOs in the code - * most .c : cleanup though -pedantic and Insure++ - * improvements on validation ID checkings. - * tree.[ch] SAX.c: added support for namespace on attributes #2022 - * xml-config.in: closed #1810 - -Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.h, valid.c, valid.h: more work on validity, IDs - * xpath.c: added/fixed comparidon and equlity, added a new isinf - definition for AIX - -Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in - the distribution due to a cut'n paste error at last commit - -Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: upgraded to version 1.4.0 - * valid.[ch], SAX.c, parser.[ch] parserInternals.h ... - Big update, added a large part of the validation process, - it should be usable, but some parts are missing - * xpath.c: improved the implementation w.r.t. root. - * Makefile.am: added more tests - * test and result trees: added a lot of tests - * libxml.spec.in: export libxml.so.0 and libxml.so.1 - -Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Added an HACKING file - -Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * xpath.[ch] : improvements and debug of the XPath implementation - * parser.c, HTMLparser.c : modified the parsers to be progressive - * tree.[ch] : extended the Buffer promitives - * xmlIO.[ch] : added basic I/O routines providing progressive - parsing and ready for I18N conversion plugins - * SAXresult/* : the SAX callback sequence maybe slightly different - now - * test*.c : improved/updated the tests programs - * doc/* : recompiled the docs. - -1999-07-26 Michael Meeks <michael@edenproject.org> - - * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild - - * tree.c: Ditto. - -Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: upgraded to version 1.4.0 - * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath - draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly - XML query language, see http://www.w3.org/TR/xpath for more details. - * parser.c, parser.h: added CHAR* related string functions for XPath - * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities. - * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation, - rebuild the docs. - * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target - and regression testing capabilities for XPath. - -Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com> - closing bug #1646 - -Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am, example/Makefile.am: closed bug #1683 - -Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * example/Makefile.am, configure.in: added the makefile for the - gjobread example - -Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl> - - * doc/Makefile.am: - - fix which allow "make install DESTDIR=</install/prefix>". - -Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com> - which fixed a problem on the file reading-code. - -Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and - output. - * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt - -Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.h : Oops removed the binary compatibility problem - * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump - * parser.c, HTMLparser.c: applied patches for reading from stdin - -Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, entities.c, valid.c: cleanup bug #1591 - * configure.in: cleanup bug #1592 - * HTMLparser.[ch], testHTML.c: started adding an HTML parser using - the same tree back-end. Hence gdome will be available for it. - * doc/Makefile.am: close bug #617 - -Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: alloctate a per parser context SAX interface block - -Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * released 1.3.0 with xmlEncodeEntities restoring old behaviour - and xmlEncodeEntitiesReentrant with the correct one :-\ - -Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * commit of my internal XML base changes, quite a lot of - changes, cleanups, better entities support, framework for - new I/O and charset detection and handling - * Fixed the configure/Makefile stuff to generate shared libs - with the proper version info, so we jumped on rev from - 0.0.0 to 1.2.0 ! The binary interfaces have been broken, - xmlEncodeEntities() result need to be freed now, and a string - xmlParserVersion provide the current library version. - -Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org> - - * parser.c: fixed a buffer overrun for when you have a very long - attribute with no entities in it. - -Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * added example directory - * added example/gjobs.xml gjobread.c, still need a Makefile.in - -Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Release of libxml-1.1, nearly everything has been touched for - this. - * Added more regression tests - * Updated the documentation - -Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch]: unified the XML_NO_CORBA defines. - * parser.c encoding.[ch]: started plugging in char encoding detection - -Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu> - - * tree.c: (xmlSaveFile) - removed double call of xmlContentDump. - Also freed allocated buffer. - -Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main - reentrancy problem at printing. One is left in entities.c, to - remove ASAP - * testSAX.c : added a test example showing the use of the SAX - interface if one doesn't want to build the DOM tree. - * html/gnome-xml-*.html html/index.sgml: regenerated the documentation - -Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]: - large revamping of the parser to use SAX callbacks - http://www.megginson.com/SAX/ (or at least a C like interface - a la Expat). It's now possible to set up your own callbacks - and the parser will not build a DOM tree. - * test/* result/*: updated the test suite, I finally removed - the old Namespace draft support (PI based). - -Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am: added test result to EXTRA_DIST for make tests - -Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, parserInternals.h: moved the chars macro definitions - to parserInternals.h - * parser.c, error.c: applied patches from "Knut Åkesson" - <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o - -Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * xml-config.in : applied patch to make --version work - -1999-03-05 Raja R Harinath <harinath@cs.umn.edu> - - * Makefile.am (check-local): Alias for `tests' target. This will - cause `make check' to do the right thing. - (tests): Don't run tests in srcdir. Also, replaced calls to - basename with a `sed' "equivalent". - -Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Renamed error.h to xml-error.h, corrected Makefile.am to list - it in the header and not the sources, updated the doc. - Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for - pointing this out. - -Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, parser.h, parserInternals.h: memory leak hunting, - exported the inputStream routines. - * doc/html/* : updated accordingly - -Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, parser.h, parserInternals.h: added a few extra - internal calls to allocate and free parser contexts ... - * doc/html/* : updated accordingly - -Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in, Makefile.am, doc/makefile.am : General changes for - 1.0.0 release and including the generated HTML documentation. - -Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * makefile.am : added parserInternals.h, oops. - -Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parserInternals.h: added this header giving access to the parser - internal functions. - * doc/Makefile.am : added a rebuild target which rebuilds the full - set of documentations - * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing - the internal subset. - * *.c *.h: modifications needed to generate the documentation using - gtk-doc, cleanup of functions blocks, reorganisation of struct - declarations. - -Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing - the tar and spec file to include the beginning of the doc. - -1999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt> - - * doc/.cvsignore: Added this file. - -Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: fixed xmlGetProp to return "" when the attribute - exists, even if the node-list is NULL. - -Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: patched an error outputting empty attribute values. - * Makefile.am and doc/makefile.am: have been updated during the - week-end. Sorry for an empty CVS log, I got a shell problem. - -Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.h: cleaned up using enums instead of defines - * parser.c, valid.[ch]: more work on parsing/output of element - declarations - -Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * valid.[ch], tree.c, parser.c : more work toward full parsing - of XML DTDs. - * README: added informations about mailing-list and on-line - documentation - -1999-01-27 Raja R Harinath <harinath@cs.umn.edu> - - * configure.in (XML_INCLUDEDIR): Use -I not -L for includes. - -Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, tree.[ch] : more work toward conformance testing, - added a last element to accelerate parsing of very flat structures - started working on internal subset Element content declaration. - * valid.[ch] : first cut at adding code toward validation. - * previous changes had also small impact on most files, especially - the conformance testing using James Clark test suite. - -Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> - - * test/* : updated the examples, most of them were not well - formed (humm), and added rdf2. - * result/* : resulting changes in the output. - -Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: changed the behaviour of xmlGetProp on NULL values. - -Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: patched a bug in the generation of empty attributes - -Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * entities.[ch], tree.[ch], tester.c: added copy interfaces - for node/trees/documents/... Biggest problem is namespace - support when copying subtrees. - -Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, entities.c: improve entities and char ref encoding, - and cleanups of error messages. - -Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c, entities.c: simple bug hunting done during rpm2html and - rpmfind integration. - -Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch]: Added interfaces allowing to specify a SAX - handler before parsing. - -Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: redirrect all errors reporting through the SAX - error function - -Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * entities.c: rather use HAVE_SNPRINTF and not depend on glib - * libtool, tlmain ...: update of the libtool files - -1998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx> - - * entities.c: Use g_snprintf insteda of snprintf. - -Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * entities.c, parser.c: debug and cleanup of CharRef handling/saving. - added ent5 test for this purpose. - * parser.c, parser.h: formatting, comments and UTF-8 planning. - -Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: fixed? a strange error due to compression on a GWP - document. - -Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch]: bug fixing - * entities.[ch]: defined a specific type for predefined entities - * doc/xml.html: more documentation on the library, how to use it, - overview of the interfaces. - -Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.[ch]: more cleanup on the API, made the tree mor conformant. - -Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c: corrected a small bug - * doc/xml.html: continuing writing documentation. - -Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * debugXML.h debugXML.c: added debugging utilities. - * tester.c: added --debug switch. - * tree.c: patched an incorrect node->type assignment. - * parser.c: formatting, ensure that node->doc != NULL in attributes - -Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve - entity support and provide an internal representation close to - DOM one (entity ref nodes, and attribute value as tree). I tried - to preserve the interface but this will surely break some apps - (I have to change rpm2html/rpmfind for example). I had to change - two interfaces, and the generated tree is somewhat different. - * doc/* : started documenting the XML library, the tree and - DOM/Corba. This is a first step. - -Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: Set up the fonctions comment block, boring but useful. - * parser.h, SAX.c, parser.c: now attributes are processed through - the SAX interface. The problem is that my SAX interface diverged - quite a bit from the original one, well this is not an official - spec, and translating it from Java to C is hairy anyway... - -Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the - fonctions comment block, boring but useful. - -Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1 - conversion routines. However they are not yet used to convert the - inputs. The core will run with UTF-8. - -Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c : make sure that the type id is properly set-up when - a new object is allocated, needed for DOM. - -Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.h, tree.c: Ok, the main objects in the tree will be native - corba objects, it costs 8 bytes per Node, Attribute and Document - but it simplifies the Corba integration a lot (no extra interface - objects to allocate/free). - -Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.h, tree.c, parser.c: added prev and doc pointers to Node, - and changed NODEs contants for conformity with DOM Level 1 - -Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * added hooks to keep track of servants when creating objects - xmlDoc and xmlNode (for Corba export). - -Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * added xml-config script. - -Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr> - to autoupdate libtool and automake conf files. - -1998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx> - - * Makefile.am: Use '?' to separate the sed - commands as ',' is used when people pass -Wl,something. - - -Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * tree.c, tree.h: added a per-document compression interface. - -Tue Sep 22 20:47:38 EDT 1998 - - * tree.c, tree.h: added saving with compression and added interfaces - to control the compression level (xmlGetCompressMode, - xmlSetCompressMode) and a new save to filename function (xmlSaveFile). - -Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * parser.c: corrected a loop for files of size 0 - -1998-08-20 Raja R Harinath <harinath@cs.umn.edu> - - * error.h: New file. Contains prototyes from `error.c'. - -Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com> - - * Makefile.am (xmlincdir): New macro. - (xmlinc_HEADERS): Renamed from include_HEADERS. - -Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * applied small patch on numeric entities from - Christopher Blizzard <blizzard@appliedtheory.com> - -Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * New release 0.2, removed the old xml_* files so that it's - coherent with the other CVS base (W3C), far better conformance - to standard, new namespaces, decent entities support, beginning - of a SAX-like interface. Nearly nothing left intact, even the - test examples ... - -1998-07-30 Christopher Blizzard <blizzard@appliedtheory.com> - - * .cvsignore: Add .deps dir - -Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * xml_tree: changed the memory allocation scheme for name in xmlNewNode - -Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * configure.in: added test for CPP - * AUTHORS, Changelog: the original ones didn't get commited but the - glib ones instead, fixed. - * Makefile.am: corrected an error in library naming - -Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org> - - * integrated code developped at W3C - * changed the original Copyright - * migrated to automake - * prefixed the filenames by xml_ to avoid filename clashes - -Mon Jan 6 12:05:12 CET 2003 Daniel Veillard <daniel@veillard.com> - - * doc/tutorial/* : fixed #101894 if doc == NULL xmlFreeDoc - should not be called. - -Mon Jan 6 11:59:09 CET 2003 Daniel Veillard <daniel@veillard.com> - - * libxml-2.0.pc.in: applied the patch to fix #101894 - -Sun Jan 5 23:35:47 CET 2003 Daniel Veillard <daniel@veillard.com> - - * tree.c : applied patch from Lukas Schroeder for register callbacks - * valid.c: modified patch from Lukas Schroeder to test - register callbacks with --chkregister - -Sun Jan 5 02:23:20 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c: seriously changed the way data are pushed to - the underlying parser, go by block of 512 bytes instead of - tryng to detect tag boundaries at that level. Changed the - way empty element are detected and tagged. - * python/tests/reader.py python/tests/reader2.py - python/tests/reader3.py: small changes mostly due to context - reporting being different and DTD node being reported. Some - errors previously undetected are now caught and fixed. - * doc/xmlreader.html: flagged last section as TODO - -Sat Jan 4 20:40:28 CET 2003 Daniel Veillard <daniel@veillard.com> - - * python/libxml.py: integrated the Python 2.2 optimizations - from Hannu Krosing, while maintaining compatibility with - 1.5 and 2.1 - -Sat Jan 4 17:33:17 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: a bit of cleanup - * xmlreader.c: small fix - * doc/xmlreader.html: more work on the XmlTextReader tutorial - * python/libxml.py: a few fixes pointed out by Hannu Krosing - -Sat Jan 4 13:46:14 CET 2003 Daniel Veillard <daniel@veillard.com> - - * python/setup.py.in: patch from Stéphane Bidoul to include - drv_libxml2.py in setup.py - -Sat Jan 4 01:43:06 CET 2003 Daniel Veillard <daniel@veillard.com> - - * doc/xmlreader.html: starting documenting the new XmlTextReader - interface. - -Fri Jan 3 17:18:32 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmllint.c: added the --stream flag to use the TextReader API - * xmlreader.c: small performance tweak - -Fri Jan 3 13:50:55 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader2py: okay the DTD validation - code on top of the XMLTextParser API should be solid now. - -Fri Jan 3 02:17:18 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader2py: Fixing some more mess - with validation and recursive entities while using the - reader interface, it's getting a bit messy... - -Thu Jan 2 15:15:26 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: another couple of problem - related to IsEmptyElement reported by Stéphane Bidoul needed - some fixes. - -Thu Jan 2 13:57:07 CET 2003 Daniel Veillard <daniel@veillard.com> - - * libxml.spec.in python/Makefile.am python/drv_libxml2.py: - integrated drv_libxml2.py Python xml.sax driver from Stéphane Bidoul - based on the python XmlTextReader interface. - -Wed Jan 1 22:05:40 CET 2003 Daniel Veillard <daniel@veillard.com> - - * tree.c: backing out one change in the last patch which broke the - regression tests - -Wed Jan 1 21:57:28 CET 2003 Daniel Veillard <daniel@veillard.com> - - * global.data globals.c tree.c include/libxml/globals.h: applied - an old patch from Lukas Schroeder to track node creation and - destruction. Probably missing a lot of references at the moment - and not usable reliably. - -Wed Jan 1 20:12:07 CET 2003 Daniel Veillard <daniel@veillard.com> - - * NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file - from doc/news.html and a stylesheet - -Wed Jan 1 16:09:57 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: fixed another couple of - xmlreader bugs reported by Stéphane Bidoul and added tests. - -Wed Jan 1 15:42:54 CET 2003 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader2.py: fixed another validity - checking in external parsed entities raised by Stéphane Bidoul - and added a specific regression test. - * python/tests/reader3.py: cleanup - -Tue Dec 31 15:44:02 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader2.py: fixed a problem with - validation within entities pointed by Stéphane Bidoul, augmented - the tests to catch those. - -Tue Dec 31 12:15:37 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py: modified the generator to allow keeping - class references when creating new classes, needed to fix a bug - pointed by Stéphane Bidoul where the input buffer of the - xmlTextReader instance gets destroyed if the python wrapper for - the input is not referenced anymore. - -Mon Dec 30 19:39:36 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: fixed another pair of problem - pointed by Stéphane Bidoul: depth start at 0 and a parse problem. - -Mon Dec 30 13:36:50 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: fixed another problem - pointed by Stéphane Bidoul - -Mon Dec 30 12:39:55 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: fixed a limit case problem - with "<a/>" - -Mon Dec 30 11:53:44 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c: warn on xmlns:prefix="foo" - * xmlreader.c python/tests/reader.py: fixed a couple of problem - for namespace attributes handling. - -Mon Dec 30 00:59:07 CET 2002 Daniel Veillard <daniel@veillard.com> - - * entities.c parser.c tree.c include/libxml/entities.h: Fixed - a really nasty problem raised by a DocBook XSLT transform - provided by Sebastian Bergmann - -Sun Dec 29 12:13:18 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c python/tests/reader.py: fixed a bug pointed out - by Stéphane Bidoul and integrated it into the tests - -Sat Dec 28 23:49:12 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: - extended the XmlTextReader API a bit, addding accessors for - the current doc and node, and an entity substitution mode for - the parser. - * python/libxml.py python/libxml2class.txt: related updates - * python/tests/Makefile.am python/tests/reader.py - python/tests/reader2.py python/tests/reader3.py: updated a bit - the old tests and added a new one to test the entities handling - -Sat Dec 28 22:11:57 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/generator.py python/libxml2class.txt - python/tests/reader.py python/tests/reader2.py: changed the - generator to provide casing for the XmlTextReader similar to - C# so that examples and documentation are more directly transposable. - Fixed the couple of tests in the suite. - -Sat Dec 28 15:55:32 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/guidelines.html: added a document on guildeline for - publishing and deploying XML - -Fri Dec 27 20:35:15 CET 2002 Daniel Veillard <daniel@veillard.com> - - * valid.c xmlreader.c: final touch running DTD validation - on the XmlTextReader - * python/tests/Makefile.am python/tests/reader2.py: added a - specific run based on the examples from test/valid/*.xml - -Fri Dec 27 15:17:20 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml.py: added a few predefined xmlTextReader parser - configuration values. - -Fri Dec 27 12:57:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml_wrap.h: trying to fix #102037 - -Fri Dec 27 12:18:14 CET 2002 Daniel Veillard <daniel@veillard.com> - - * SAX.c: fixing bug #95296, when the predefined entities - are redefined in the DTD the default one must be used - instead anyway. - -Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net> - - * doc/xmllint.xml - * doc/xmllint.1 - Add discussion of XML_DEBUG_CATALOG to xmllint man - page - bug #100907 - - -Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c: Fixed the empty node detection to avoid reporting - an inexistant close tag. - -Mon Dec 23 15:42:24 CET 2002 Daniel Veillard <daniel@veillard.com> - - * python/libxml.c python/setup.py.in: patch from Stéphane Bidoul - for Python 2.1 - -Sun Dec 22 11:24:06 CET 2002 Daniel Veillard <daniel@veillard.com> - - * testC14N.c vms/config.vms: applied Craig A. Berry patches for VMS - -Fri Dec 20 11:27:49 CET 2002 Daniel Veillard <daniel@veillard.com> - - * doc/libxml2-api.xml python/tests/reader.py: one really need - to provide the base URI information when creating a reader parser - from an input stream. Updated the API and the example using it. - -Fri Dec 20 01:11:30 CET 2002 Daniel Veillard <daniel@veillard.com> - - * testReader.c xmlreader.c valid.c include/libxml/tree.h - include/libxml/valid.h include/libxml/xmlreader.h: working on - DTD validation on top of xml reader interfaces. Allows to - validate arbitrary large instances. This required some extensions - to the valid module interface and augmenting the size of xmlID - and xmlRef structs a bit. - * uri.c xmlregexp.c: simple cleanup. - -Wed Dec 18 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: more - work on the xml reader interfaces. - * AUTHORS MAINTAINERS doc/* win32/*: updated Igor's mail and the - Web page for the Windows binaries. - -Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com> - - * xmlIO.c: applied a patch for VMS following the report by - Nigel Hall - -Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com> - - * parser.c: the parseStartTag bug fix wasn't complete. - Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com> * parser.c: Vyacheslav Pindyura managed to trigger a bug in @@ -13864,7 +6358,7 @@ Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> * win32/libxml2.def.src: added more xml reader exports * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface to the build - + Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net> * doc/tutorial/xmltutorial.xml @@ -13879,7 +6373,6 @@ Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net> * doc/tutorial/includegetattribute.c plus generated html and pdf Adding fix from Niraj Tolia to tutorial to properly free memory. - Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com> @@ -14080,7 +6573,7 @@ Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk> * globals.c: removed duplicate call to initxmlDefaultSAXHandler in xmlInitializeGlobalState. * parserInternals.c: cleaned up ctxt->sax initialisation. - + Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com> * tree.c include/libxml/tree.h: modified the existing APIs @@ -14199,7 +6692,6 @@ Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net> * doc/tutorial/ar01s08.html adding file what I forgot for tutorial - Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net> Adding encoding discussion to tutorial @@ -14550,7 +7042,7 @@ Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> regexp support * win32/libxml2.def.src: applied the patch from Mark Vakoc for regexp support - + Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com> * xmlschemastypes.c: as pointed by Igor Float and Double @@ -14635,7 +7127,7 @@ Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> * win32/configure.js: added more readme info for the binary package. - + Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com> * xmlIO.c: fixed a stupid out of bound array error @@ -14715,7 +7207,7 @@ Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net> added image files so the callouts are graphical, making it easier to read ( use "--param callout.graphics 1" to generate html with graphical callouts) - + Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com> * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif: @@ -14761,7 +7253,7 @@ Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> * win32/Makefile.msvc: added the prefix location to the include and lib search path. - + 2002-08-18 Havoc Pennington <hp@pobox.com> * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with @@ -14822,7 +7314,7 @@ Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com> * win32/dsp/libxml2.def.src win32/libxml2.def.src: added new c14n function to Windows def files - + Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com> * c14n.c: fixed a memory leak in c14n code @@ -14855,7 +7347,6 @@ Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com> * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces corner case from new Merlin's test suite and added a callback that will be used to improve xmlsec performance - Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com> @@ -14904,10 +7395,10 @@ Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com> doc/xmlcatalog_man.xml to the source distribution Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de> - + * win32/Makefile.msvc: Added a copy *.pdb to install, few have asked for this. - + Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com> * configure.in: preparing 2.4.23 @@ -15183,13 +7674,13 @@ Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com> Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com> * parser.c: fixed bug #81159 (memory growth in SAX) - + Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com> * xpath.c: fixed bug #78858 (the real fix) Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com> * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem) - + Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com> * tree.c: modified xmlNodeSetBase to allow changing the @@ -15501,7 +7992,7 @@ Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com> the internal subset should not raise duplicate ID errors, also there was a small bug in conjunction to namespace declarations defaulted and xml:xxx attributes DTD definitions. - + Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com> * xpath.c: Richard Jinks also raised some rounding problems @@ -16003,7 +8494,7 @@ Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com> include/libxml/xmlmemory.h include/libxml/xpathInternals.h: Tentatively fixed #69655 , make compiling with -Wredundant-decls clean. - * python/libxml.c: fixed a warning. + * python/libxml.c: fixed a warning. Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com> @@ -16297,7 +8788,7 @@ Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com> Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com> * tree.c: Adam Lounds pointed out a bug in xmlSearchNs() - + Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com> * xpath.c include/libxml/xpathInternals.h: the change made to @@ -16500,7 +8991,7 @@ Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com> Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net> *doc/xmllint.xml, xmllint.1 - document --dropdtd - + Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com> * valid.c: fix the xmlStrdup() used in the previous patch. @@ -16730,7 +9221,7 @@ Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com> * Makefile.am: confexecdir and confexec_DATA were defined twice pointed out by Karl Eichwalder - + Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com> * xmlcatalog.c: avoid unlink() and use remove() instead. @@ -17002,7 +9493,6 @@ Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net> * doc/xmlcatalog_man.xml, xmlcatalog.1 One more crack at https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392 - Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net> @@ -17136,7 +9626,7 @@ Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com> * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-( Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com> - Released 2.4.4 + Released 2.4.4 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml, @@ -17218,7 +9708,7 @@ Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com> Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> * trionan.c: Fixed const and volatile re-definition problem - + Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com> * libxml.4 parser.c: doc updates from Heiko Rupp @@ -17249,7 +9739,7 @@ Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com> the XML syntax. * xmllint.c: small cleanup for $SGML_CATALOG_FILES support. - 2.4.3 got released at that point + 2.4.3 got released at that point Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com> * catalog.c xmlIO.c: started some serious testing and fixed @@ -17270,7 +9760,7 @@ Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com> * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by Jun Kuriyama - + Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com> * doc/catalog.html: finished the catalog documentation @@ -17422,7 +9912,7 @@ Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com> Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com> - * HACKING: added John Fleck right to commit in the doc subdir + * HACKING: added John Fleck right to commit in the doc subdir Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com> @@ -17875,7 +10365,7 @@ Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> * trio.c: MSVC fix (provided by Igor Zlatkovic) - + Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * include/win32config.h: another small fix for ATTRIBUTE_UNUSED @@ -18109,7 +10599,7 @@ Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net> * error.c: Workaround for non-preserving variadic list. * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4 - + Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * doc/xml.html: added 2.3.10 release @@ -18631,7 +11121,7 @@ Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> prefix lookup. * parserInternals.c: fixed the bug reported by Morus Walter due to an off by one typo in xmlStringCurrentChar() - + Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * HTMLparser.c result/HTML/*: revamped the way the HTML @@ -18724,7 +11214,6 @@ Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP usage. - Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * error.c: applied the context output patch of the error @@ -18750,7 +11239,7 @@ Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr> * configure.in: removed -ansi flag from the pedantic set Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> - Huge cleanup, I switched to compile with + Huge cleanup, I switched to compile with -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow @@ -19182,15 +11671,15 @@ Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com> - * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks. + * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks. - * xmlIO.c (xmlCheckFilename): Function added to know whether a given - filename points to a valid file (not a directory). - * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW): - Added calls to xmlCheckFilenameDir. + * xmlIO.c (xmlCheckFilename): Function added to know whether a given + filename points to a valid file (not a directory). + * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW): + Added calls to xmlCheckFilenameDir. - * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass - `path' (rather than `filename') as the parameter to gzopen and open. + * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass + `path' (rather than `filename') as the parameter to gzopen and open. Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> @@ -19509,7 +11998,7 @@ Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler); to reset the error handling routine and its argument (by default it's equivalent to respectively fprintf and stderr. - * all the c files: all wild accesses to stderr or stdout within + * all the c files: all wild accesses to stderr or stdout within the library have been replaced to calls to the handler. Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> @@ -19565,7 +12054,7 @@ Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> - * Release of 2.2.5 + * Release of 2.2.5 * xpointer.c: range() range-inside and other helper functions * parserInternals.c: fixed perf problem raised by rolf@pointsman.de @@ -19600,7 +12089,7 @@ Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> support for SCRIPT and STYLE with help from Bjorn Reese * test/HTML/* result/HTML/*: added simple testcase and updated the existing ones. - + Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * xpath.c xpointer.c: XPointer reorder of ranges start/end and @@ -19732,7 +12221,7 @@ Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation engine, should be far more stable, incorporated a new version of preceding/following axis, need testing - * uri.c: fixed file:///c:/a/b/c problem + * uri.c: fixed file:///c:/a/b/c problem * test/XPath/tests/idsimple: augmented the XPath tests Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> @@ -20062,7 +12551,7 @@ Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> when using in memory parsing. Need some cleanup. * xmllint.c configure.in: added a --memory flag to test memory parsing - + Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * nanohttp.c: fixed socklen_t replacement to unsigned int @@ -20175,7 +12664,6 @@ Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch for 2.x support and also fixed includes - Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped @@ -20269,7 +12757,7 @@ Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org> * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c and added xmllint to the installed programs * uri.h: added xmlFreeURI() - + Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org> * uri.c uri.h: finished the escaping handling, the base support @@ -20602,7 +13090,7 @@ Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> Carl Nygard <cnygard@bellatlantic.net> * tester.c: added --postvalid, cleaning of the code * tree.[ch]: added xmlDocGetRootElement() - + Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com> * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround @@ -20628,8 +13116,7 @@ Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> that output is closer to next version. * doc/* : regenerated the documentation, it is now hosted at http://xmlsoft.org/ (same bits I just bought the domain :-) - - + Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org> * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the @@ -20710,7 +13197,7 @@ Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> * parser.c: closed bug #2784 a one line fix, but worth pushing a new release out - * HTMLparser.c: fixed auto-close bugs on list items, zeroing + * HTMLparser.c: fixed auto-close bugs on list items, zeroing some structures, comments before and after the main element, and other nastyness * HTMLtree.c tree.c: accomodate the extended HTML supported @@ -20890,8 +13377,8 @@ Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> - * xpath.[ch] : improvements and debug of the XPath implementation - * parser.c, HTMLparser.c : modified the parsers to be progressive + * xpath.[ch] : improvements and debug of the XPath implementation + * parser.c, HTMLparser.c : modified the parsers to be progressive * tree.[ch] : extended the Buffer promitives * xmlIO.[ch] : added basic I/O routines providing progressive parsing and ready for I18N conversion plugins @@ -20935,8 +13422,8 @@ Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl> - * doc/Makefile.am: - - fix which allow "make install DESTDIR=</install/prefix>". + * doc/Makefile.am: + - fix which allow "make install DESTDIR=</install/prefix>". Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> @@ -20947,7 +13434,7 @@ Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and output. - * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt + * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org> @@ -21221,11 +13708,11 @@ Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org> - * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve - entity support and provide an internal representation close to - DOM one (entity ref nodes, and attribute value as tree). I tried - to preserve the interface but this will surely break some apps - (I have to change rpm2html/rpmfind for example). I had to change + * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve + entity support and provide an internal representation close to + DOM one (entity ref nodes, and attribute value as tree). I tried + to preserve the interface but this will surely break some apps + (I have to change rpm2html/rpmfind for example). I had to change two interfaces, and the generated tree is somewhat different. * doc/* : started documenting the XML library, the tree and DOM/Corba. This is a first step. @@ -21277,7 +13764,7 @@ Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr> + * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr> to autoupdate libtool and automake conf files. 1998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx> @@ -21285,7 +13772,6 @@ Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> * Makefile.am: Use '?' to separate the sed commands as ',' is used when people pass -Wl,something. - Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> * tree.c, tree.h: added a per-document compression interface. @@ -21332,7 +13818,7 @@ Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org> - * configure.in: added test for CPP + * configure.in: added test for CPP * AUTHORS, Changelog: the original ones didn't get commited but the glib ones instead, fixed. * Makefile.am: corrected an error in library naming diff --git a/HTMLparser.c b/HTMLparser.c index 309d93c..10f8516 100644 --- a/HTMLparser.c +++ b/HTMLparser.c @@ -463,16 +463,27 @@ htmlSkipBlankChars(xmlParserCtxtPtr ctxt) { /* Definitions and a couple of vars for HTML Elements */ #define FONTSTYLE "tt", "i", "b", "u", "s", "strike", "big", "small" +#define NB_FONTSTYLE 8 #define PHRASE "em", "strong", "dfn", "code", "samp", "kbd", "var", "cite", "abbr", "acronym" +#define NB_PHRASE 10 #define SPECIAL "a", "img", "applet", "object", "font", "basefont", "br", "script", "map", "q", "sub", "sup", "span", "bdo", "iframe" +#define NB_SPECIAL 15 #define INLINE PCDATA FONTSTYLE PHRASE SPECIAL FORMCTRL -#define BLOCK HEADING LIST "pre", "p", "dl", "div", "center", "noscript", "noframes", "blockquote", "form", "isindex", "hr", "table", "fieldset", "address" +#define NB_INLINE NB_PCDATA + NB_FONTSTYLE + NB_PHRASE + NB_SPECIAL + NB_FORMCTRL +#define BLOCK HEADING, LIST "pre", "p", "dl", "div", "center", "noscript", "noframes", "blockquote", "form", "isindex", "hr", "table", "fieldset", "address" +#define NB_BLOCK NB_HEADING + NB_LIST + 14 #define FORMCTRL "input", "select", "textarea", "label", "button" +#define NB_FORMCTRL 5 #define PCDATA +#define NB_PCDATA 0 #define HEADING "h1", "h2", "h3", "h4", "h5", "h6" +#define NB_HEADING 6 #define LIST "ul", "ol", "dir", "menu" +#define NB_LIST 4 #define MODIFIER +#define NB_MODIFIER 0 #define FLOW BLOCK,INLINE +#define NB_FLOW NB_BLOCK + NB_INLINE #define EMPTY NULL @@ -487,11 +498,17 @@ static const char* html_pcdata[] = { NULL } ; /* ... and for HTML Attributes */ #define COREATTRS "id", "class", "style", "title" +#define NB_COREATTRS 4 #define I18N "lang", "dir" +#define NB_I18N 2 #define EVENTS "onclick", "ondblclick", "onmousedown", "onmouseup", "onmouseover", "onmouseout", "onkeypress", "onkeydown", "onkeyup" +#define NB_EVENTS 9 #define ATTRS COREATTRS,I18N,EVENTS +#define NB_ATTRS NB_NB_COREATTRS + NB_I18N + NB_EVENTS #define CELLHALIGN "align", "char", "charoff" +#define NB_CELLHALIGN 3 #define CELLVALIGN "valign" +#define NB_CELLVALIGN 1 static const char* html_attrs[] = { ATTRS, NULL } ; static const char* core_i18n_attrs[] = { COREATTRS, I18N, NULL } ; @@ -1686,12 +1703,15 @@ static const htmlEntityDesc html40EntitiesTable[] = { * Macro used to grow the current buffer. */ #define growBuffer(buffer) { \ + xmlChar *tmp; \ buffer##_size *= 2; \ - buffer = (xmlChar *) xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \ - if (buffer == NULL) { \ + tmp = (xmlChar *) xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \ + if (tmp == NULL) { \ htmlErrMemory(ctxt, "growing buffer\n"); \ + xmlFree(buffer); \ return(NULL); \ } \ + buffer = tmp; \ } /** @@ -2832,13 +2852,17 @@ htmlParseComment(htmlParserCtxtPtr ctxt) { ((cur != '>') || (r != '-') || (q != '-'))) { if (len + 5 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { + xmlFree(buf); htmlErrMemory(ctxt, "growing buffer failed\n"); ctxt->instate = state; return; } + buf = tmp; } COPY_BUF(ql,buf,len,q); q = r; @@ -170,7 +170,7 @@ htmlSetMetaEncoding(htmlDocPtr doc, const xmlChar *encoding) { if (encoding != NULL) { snprintf(newcontent, sizeof(newcontent), "text/html; charset=%s", - encoding); + (char *)encoding); newcontent[sizeof(newcontent) - 1] = 0; } diff --git a/Makefile.am b/Makefile.am index 4b3affd..adb13ad 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,8 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = include . doc example @PYTHON_SUBDIR@ +SUBDIRS = include . doc example xstc @PYTHON_SUBDIR@ -DIST_SUBDIRS = include . doc example python +DIST_SUBDIRS = include . doc example python xstc INCLUDES = -I$(top_builddir)/include -I@srcdir@/include @THREAD_CFLAGS@ @Z_CFLAGS@ @@ -970,6 +970,7 @@ SchemasPythonTests: echo "## It is normal to see 6 errors reported" ; \ $(CHECKER) $(PYTHON) $(srcdir)/check-xsddata-test-suite.py ; \ fi) + @(if [ -x $(PYTHON) -a -d xstc ] ; then cd xstc ; $(MAKE) CHECKER="$(CHECKER)" MAKEFLAGS+=--silent pytests ; fi) cleanup: -@(find . -name .\#\* -exec rm {} \;) @@ -1005,6 +1006,7 @@ CLEANFILES=xml2Conf.sh confexecdir=$(libdir) confexec_DATA = xml2Conf.sh +CVS_EXTRA_DIST= EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \ libxml.m4 Copyright check-xml-test-suite.py \ check-relaxng-test-suite.py check-relaxng-test-suite2.py \ diff --git a/Makefile.in b/Makefile.in index 5b5fe1f..b97de44 100644 --- a/Makefile.in +++ b/Makefile.in @@ -367,6 +367,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -374,6 +375,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ @@ -421,8 +423,8 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ -SUBDIRS = include . doc example @PYTHON_SUBDIR@ -DIST_SUBDIRS = include . doc example python +SUBDIRS = include . doc example xstc @PYTHON_SUBDIR@ +DIST_SUBDIRS = include . doc example python xstc INCLUDES = -I$(top_builddir)/include -I@srcdir@/include @THREAD_CFLAGS@ @Z_CFLAGS@ bin_SCRIPTS = xml2-config lib_LTLIBRARIES = libxml2.la @@ -506,6 +508,7 @@ testReader_LDADD = $(LDADDS) CLEANFILES = xml2Conf.sh confexecdir = $(libdir) confexec_DATA = xml2Conf.sh +CVS_EXTRA_DIST = EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \ libxml.m4 Copyright check-xml-test-suite.py \ check-relaxng-test-suite.py check-relaxng-test-suite2.py \ @@ -2190,6 +2193,7 @@ SchemasPythonTests: echo "## It is normal to see 6 errors reported" ; \ $(CHECKER) $(PYTHON) $(srcdir)/check-xsddata-test-suite.py ; \ fi) + @(if [ -x $(PYTHON) -a -d xstc ] ; then cd xstc ; $(MAKE) CHECKER="$(CHECKER)" MAKEFLAGS+=--silent pytests ; fi) cleanup: -@(find . -name .\#\* -exec rm {} \;) @@ -5,7 +5,7 @@ TODO for the XML parser and stuff: ================================== - $Id: TODO,v 1.42 2003/10/28 21:31:43 veillard Exp $ + $Id: TODO,v 1.43 2004/09/26 14:42:56 veillard Exp $ this tend to be outdated :-\ ... @@ -19,55 +19,6 @@ DOCS: TODO: ===== - -- E20 -[17:21:38] <PGrosso> DV, you have an action to Check what your parser does on E20. Have you done this? -[17:22:42] <PGrosso> DV, ref: http://www.w3.org/XML/xml-V10-2e-errata#E20 -[17:39:07] <DV> paphio:~/XML -> cat tst.xml -[17:39:07] <DV> <!DOCTYPE test [ -[17:39:07] <DV> <!ELEMENT test EMPTY> -[17:39:07] <DV> <!ATTLIST test attr1 NMTOKENS #IMPLIED> -[17:39:07] <DV> <!ATTLIST test attr2 NMTOKENS #IMPLIED> -[17:39:07] <DV> <!ATTLIST test attr3 NMTOKENS #IMPLIED> -[17:39:07] <DV> ]> -[17:39:07] <DV> <test -[17:39:07] <DV> attr1=" a b " -[17:39:07] <DV> attr2=" a b " -[17:39:07] <DV> attr3=" a	b " -[17:39:07] <DV> /> -[17:39:07] <DV> paphio:~/XML -> xmllint --valid tst.xml -[17:39:07] <DV> <?xml version="1.0"?> -[17:39:07] <DV> <!DOCTYPE test [ -[17:39:07] <DV> <!ELEMENT test EMPTY> -[17:39:07] <DV> <!ATTLIST test attr1 NMTOKENS #IMPLIED> -[17:39:07] <DV> <!ATTLIST test attr2 NMTOKENS #IMPLIED> -[17:39:07] <DV> <!ATTLIST test attr3 NMTOKENS #IMPLIED> -[17:39:07] <DV> ]> -[17:39:07] <DV> <test attr1="a b" attr2="a b" attr3="a	b"/> -[17:39:07] <DV> paphio:~/XML -> -[17:39:16] <DV> I think it's okay -[17:40:28] <PGrosso> DV, so you're saying that your parser implements E20 correctly, right? -[17:40:48] <DV> assuming I understood E20 point correctly, yes -[17:41:15] <DV> and that's because I'm unsure taht I pasted the est document and result -[17:41:25] <DV> s/ est/ test/ -[17:48:56] <richard> does your parser say that document is invalid? -[17:49:03] <DV> richard: did I understood it ? -[17:49:11] <DV> richard: no it considers it valid -[17:49:16] <richard> that document is invalid -[17:49:47] <DV> ah , well it's unclear -[17:50:03] <richard> the normalized value is a-tab-b, which you are correctly serializing as a	b, but it is invalid -[17:50:11] <DV> richard: okay -[17:50:23] <DV> that should be really easy to fix -[17:50:39] <richard> the validity check should require a single space between tokens -[17:51:03] <DV> no leading and no trailing either -[17:51:07] <richard> right -[17:51:18] <DV> which makes sense -[17:52:42] <richard> a b is valid, because it turns into a-space-b anyway without any normalization -[17:54:31] <DV> okay that's attr2 attr2=" a b " -[17:54:44] * DV tends to still think in hexa -[17:55:59] <DV> richard: and attr2="a  b" would lead to a validity error too then, if I understand correctly -[17:56:37] <richard> attr2 is valid -[17:57:11] <richard> the normalized value is a space b - XInclude at the SAX level (libSRVG) - fix the C code prototype to bring back doc/libxml-undocumented.txt to a reasonable level @@ -6,7 +6,6 @@ #undef HAVE_ISNAN #undef HAVE_LIBHISTORY #undef HAVE_LIBREADLINE -#undef SOCKLEN_T #undef HAVE_LIBPTHREAD #undef HAVE_PTHREAD_H diff --git a/check-xinclude-test-suite.py b/check-xinclude-test-suite.py index c0af1f9..163ea32 100755 --- a/check-xinclude-test-suite.py +++ b/check-xinclude-test-suite.py @@ -82,6 +82,8 @@ def runTest(test, basedir): return -1 expected = None + outputfile = None + diff = None if type != 'error': output = test.xpathEval('string(output)') if output == 'No output file.': @@ -98,6 +100,7 @@ def runTest(test, basedir): try: f = open(output) expected = f.read() + outputfile = output except: print "Result for %s unreadable: %s" % (id, output) @@ -112,6 +115,8 @@ def runTest(test, basedir): result = doc.serialize() if result != expected: print "Result for %s differs" % (id) + open("xinclude.res", "w").write(result) + diff = os.popen("diff %s xinclude.res" % outputfile).read() doc.freeDoc() else: @@ -157,6 +162,9 @@ def runTest(test, basedir): log.write(" ----\n%s ----\n" % (error_msg)) error_msg = '' log.write("\n") + if diff != None: + log.write("diff from test %s:\n" %(id)) + log.write(" -----------\n%s\n -----------\n" % (diff)); return 0 diff --git a/config.h.in b/config.h.in index f54d0bf..8a65287 100644 --- a/config.h.in +++ b/config.h.in @@ -7,7 +7,6 @@ #undef HAVE_ISNAN #undef HAVE_LIBHISTORY #undef HAVE_LIBREADLINE -#undef SOCKLEN_T #undef HAVE_LIBPTHREAD #undef HAVE_PTHREAD_H @@ -463,7 +463,7 @@ ac_includes_default="\ # include <unistd.h> #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os LIBXML_MAJOR_VERSION LIBXML_MINOR_VERSION LIBXML_MICRO_VERSION LIBXML_VERSION LIBXML_VERSION_INFO LIBXML_VERSION_NUMBER LIBXML_VERSION_EXTRA INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP RM MV TAR PERL EGREP U ANSI2KNR LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL Z_CFLAGS Z_LIBS HTML_DIR PYTHON WITH_PYTHON_TRUE WITH_PYTHON_FALSE pythondir PYTHON_SUBDIR STATIC_BINARIES WITH_TRIO_SOURCES_TRUE WITH_TRIO_SOURCES_FALSE WITH_TRIO THREAD_LIBS WITH_THREADS THREAD_CFLAGS TEST_THREADS THREADS_W32 WITH_OUTPUT WITH_TREE WITH_FTP FTP_OBJ WITH_HTTP HTTP_OBJ WITH_LEGACY WITH_READER READER_TEST WITH_PATTERN PATTERN_TEST WITH_WRITER WITH_SAX1 TEST_SAX WITH_PUSH TEST_PUSH WITH_HTML HTML_OBJ TEST_HTML TEST_PHTML WITH_VALID TEST_VALID TEST_VTIME WITH_CATALOG CATALOG_OBJ TEST_CATALOG WITH_DOCB DOCB_OBJ WITH_XPATH XPATH_OBJ TEST_XPATH WITH_XPTR XPTR_OBJ TEST_XPTR WITH_C14N C14N_OBJ TEST_C14N WITH_XINCLUDE XINCLUDE_OBJ TEST_XINCLUDE WITH_ICONV WITH_ISO8859X WITH_SCHEMAS TEST_SCHEMAS WITH_REGEXPS TEST_REGEXPS WITH_DEBUG DEBUG_OBJ TEST_DEBUG WITH_MEM_DEBUG WIN32_EXTRA_LIBADD WIN32_EXTRA_LDFLAGS CYGWIN_EXTRA_LDFLAGS CYGWIN_EXTRA_PYTHON_LIBADD XML_CFLAGS XML_LIBDIR XML_LIBS XML_LIBTOOLLIBS ICONV_LIBS XML_INCLUDEDIR HAVE_ISNAN HAVE_ISINF PYTHON_VERSION PYTHON_INCLUDES PYTHON_SITE_PACKAGES M_LIBS RDL_LIBS RELDATE PYTHON_TESTS LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os LIBXML_MAJOR_VERSION LIBXML_MINOR_VERSION LIBXML_MICRO_VERSION LIBXML_VERSION LIBXML_VERSION_INFO LIBXML_VERSION_NUMBER LIBXML_VERSION_EXTRA INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP RM MV TAR PERL XMLLINT XSLTPROC EGREP U ANSI2KNR LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL Z_CFLAGS Z_LIBS HTML_DIR PYTHON WITH_PYTHON_TRUE WITH_PYTHON_FALSE pythondir PYTHON_SUBDIR STATIC_BINARIES WITH_TRIO_SOURCES_TRUE WITH_TRIO_SOURCES_FALSE WITH_TRIO THREAD_LIBS WITH_THREADS THREAD_CFLAGS TEST_THREADS THREADS_W32 WITH_OUTPUT WITH_TREE WITH_FTP FTP_OBJ WITH_HTTP HTTP_OBJ WITH_LEGACY WITH_READER READER_TEST WITH_PATTERN PATTERN_TEST WITH_WRITER WITH_SAX1 TEST_SAX WITH_PUSH TEST_PUSH WITH_HTML HTML_OBJ TEST_HTML TEST_PHTML WITH_VALID TEST_VALID TEST_VTIME WITH_CATALOG CATALOG_OBJ TEST_CATALOG WITH_DOCB DOCB_OBJ WITH_XPATH XPATH_OBJ TEST_XPATH WITH_XPTR XPTR_OBJ TEST_XPTR WITH_C14N C14N_OBJ TEST_C14N WITH_XINCLUDE XINCLUDE_OBJ TEST_XINCLUDE WITH_ICONV WITH_ISO8859X WITH_SCHEMAS TEST_SCHEMAS WITH_REGEXPS TEST_REGEXPS WITH_DEBUG DEBUG_OBJ TEST_DEBUG WITH_MEM_DEBUG WIN32_EXTRA_LIBADD WIN32_EXTRA_LDFLAGS CYGWIN_EXTRA_LDFLAGS CYGWIN_EXTRA_PYTHON_LIBADD XML_CFLAGS XML_LIBDIR XML_LIBS XML_LIBTOOLLIBS ICONV_LIBS XML_INCLUDEDIR HAVE_ISNAN HAVE_ISINF PYTHON_VERSION PYTHON_INCLUDES PYTHON_SITE_PACKAGES M_LIBS RDL_LIBS RELDATE PYTHON_TESTS LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -1615,7 +1615,7 @@ host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` LIBXML_MAJOR_VERSION=2 LIBXML_MINOR_VERSION=6 -LIBXML_MICRO_VERSION=13 +LIBXML_MICRO_VERSION=14 LIBXML_MICRO_VERSION_SUFFIX= LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION$LIBXML_MICRO_VERSION_SUFFIX LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION @@ -3611,6 +3611,86 @@ else echo "${ECHO_T}no" >&6 fi +# Extract the first word of "xmllint", so it can be a program name with args. +set dummy xmllint; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_XMLLINT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $XMLLINT in + [\\/]* | ?:[\\/]*) + ac_cv_path_XMLLINT="$XMLLINT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XMLLINT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + + test -z "$ac_cv_path_XMLLINT" && ac_cv_path_XMLLINT="/usr/bin/xsltproc" + ;; +esac +fi +XMLLINT=$ac_cv_path_XMLLINT + +if test -n "$XMLLINT"; then + echo "$as_me:$LINENO: result: $XMLLINT" >&5 +echo "${ECHO_T}$XMLLINT" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +# Extract the first word of "xsltproc", so it can be a program name with args. +set dummy xsltproc; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_XSLTPROC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $XSLTPROC in + [\\/]* | ?:[\\/]*) + ac_cv_path_XSLTPROC="$XSLTPROC" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XSLTPROC="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + + test -z "$ac_cv_path_XSLTPROC" && ac_cv_path_XSLTPROC="/usr/bin/xsltproc" + ;; +esac +fi +XSLTPROC=$ac_cv_path_XSLTPROC + +if test -n "$XSLTPROC"; then + echo "$as_me:$LINENO: result: $XSLTPROC" >&5 +echo "${ECHO_T}$XSLTPROC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + echo "$as_me:$LINENO: checking for function prototypes" >&5 echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6 @@ -4607,7 +4687,7 @@ ia64-*-hpux*) ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 4610 "configure"' > conftest.$ac_ext + echo '#line 4690 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -5941,7 +6021,7 @@ fi # Provide some information about the compiler. -echo "$as_me:5944:" \ +echo "$as_me:6024:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 @@ -6968,11 +7048,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6971: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7051: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:6975: \$? = $ac_status" >&5 + echo "$as_me:7055: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -7200,11 +7280,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7203: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7283: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7207: \$? = $ac_status" >&5 + echo "$as_me:7287: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -7267,11 +7347,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7270: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7350: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:7274: \$? = $ac_status" >&5 + echo "$as_me:7354: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -8652,7 +8732,7 @@ linux*) libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) - echo '#line 8655 "configure"' > conftest.$ac_ext + echo '#line 8735 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -9434,7 +9514,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 9437 "configure" +#line 9517 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -9532,7 +9612,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 9535 "configure" +#line 9615 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11684,11 +11764,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:11687: $lt_compile\"" >&5) + (eval echo "\"\$as_me:11767: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:11691: \$? = $ac_status" >&5 + echo "$as_me:11771: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -11751,11 +11831,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:11754: $lt_compile\"" >&5) + (eval echo "\"\$as_me:11834: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:11758: \$? = $ac_status" >&5 + echo "$as_me:11838: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -12322,7 +12402,7 @@ linux*) libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) - echo '#line 12325 "configure"' > conftest.$ac_ext + echo '#line 12405 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -13104,7 +13184,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 13107 "configure" +#line 13187 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -13202,7 +13282,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 13205 "configure" +#line 13285 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -14024,11 +14104,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14027: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14107: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:14031: \$? = $ac_status" >&5 + echo "$as_me:14111: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -14091,11 +14171,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14094: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14174: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:14098: \$? = $ac_status" >&5 + echo "$as_me:14178: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -15456,7 +15536,7 @@ linux*) libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) - echo '#line 15459 "configure"' > conftest.$ac_ext + echo '#line 15539 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -16102,11 +16182,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16105: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16185: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:16109: \$? = $ac_status" >&5 + echo "$as_me:16189: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -16334,11 +16414,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16337: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16417: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:16341: \$? = $ac_status" >&5 + echo "$as_me:16421: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -16401,11 +16481,11 @@ else -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16404: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16484: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:16408: \$? = $ac_status" >&5 + echo "$as_me:16488: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -17786,7 +17866,7 @@ linux*) libsuff= case "$host_cpu" in x86_64*|s390x*|powerpc64*) - echo '#line 17789 "configure"' > conftest.$ac_ext + echo '#line 17869 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -18568,7 +18648,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 18571 "configure" +#line 18651 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -18666,7 +18746,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 18669 "configure" +#line 18749 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -25615,7 +25695,7 @@ fi echo "$as_me:$LINENO: checking for type of socket length (socklen_t)" >&5 echo $ECHO_N "checking for type of socket length (socklen_t)... $ECHO_C" >&6 cat > conftest.$ac_ext <<EOF -#line 25618 "configure" +#line 25698 "configure" #include "confdefs.h" #include <stddef.h> @@ -25626,7 +25706,7 @@ int main(void) { (void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL) ; return 0; } EOF -if { (eval echo configure:25629: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then +if { (eval echo configure:25709: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then rm -rf conftest* echo "$as_me:$LINENO: result: socklen_t *" >&5 @@ -25638,7 +25718,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 25641 "configure" +#line 25721 "configure" #include "confdefs.h" #include <stddef.h> @@ -25649,7 +25729,7 @@ int main(void) { (void)getsockopt (1, 1, 1, NULL, (size_t *)NULL) ; return 0; } EOF -if { (eval echo configure:25652: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then +if { (eval echo configure:25732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then rm -rf conftest* echo "$as_me:$LINENO: result: size_t *" >&5 @@ -25661,7 +25741,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 25664 "configure" +#line 25744 "configure" #include "confdefs.h" #include <stddef.h> @@ -25672,7 +25752,7 @@ int main(void) { (void)getsockopt (1, 1, 1, NULL, (int *)NULL) ; return 0; } EOF -if { (eval echo configure:25675: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then +if { (eval echo configure:25755: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then rm -rf conftest* echo "$as_me:$LINENO: result: int *" >&5 @@ -25685,7 +25765,7 @@ else { echo "$as_me:$LINENO: WARNING: could not determine" >&5 echo "$as_me: WARNING: could not determine" >&2;} - SOCKLEN_T="unsigned int" + SOCKLEN_T="int" fi rm -f conftest* fi @@ -28215,7 +28295,7 @@ rm -f COPYING.LIB COPYING ln -s Copyright COPYING # keep on one line for cygwin c.f. #130896 - ac_config_files="$ac_config_files libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py" + ac_config_files="$ac_config_files libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile example/Makefile python/Makefile python/tests/Makefile xstc/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure @@ -28795,6 +28875,7 @@ do "example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;; "python/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/Makefile" ;; "python/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/tests/Makefile" ;; + "xstc/Makefile" ) CONFIG_FILES="$CONFIG_FILES xstc/Makefile" ;; "include/libxml/xmlversion.h" ) CONFIG_FILES="$CONFIG_FILES include/libxml/xmlversion.h" ;; "xml2-config" ) CONFIG_FILES="$CONFIG_FILES xml2-config" ;; "libxml-2.0.pc" ) CONFIG_FILES="$CONFIG_FILES libxml-2.0.pc" ;; @@ -28943,6 +29024,8 @@ s,@RM@,$RM,;t t s,@MV@,$MV,;t t s,@TAR@,$TAR,;t t s,@PERL@,$PERL,;t t +s,@XMLLINT@,$XMLLINT,;t t +s,@XSLTPROC@,$XSLTPROC,;t t s,@EGREP@,$EGREP,;t t s,@U@,$U,;t t s,@ANSI2KNR@,$ANSI2KNR,;t t diff --git a/configure.in b/configure.in index 7f4e7f4..d75f0ef 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ AC_CANONICAL_HOST LIBXML_MAJOR_VERSION=2 LIBXML_MINOR_VERSION=6 -LIBXML_MICRO_VERSION=13 +LIBXML_MICRO_VERSION=14 LIBXML_MICRO_VERSION_SUFFIX= LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION$LIBXML_MICRO_VERSION_SUFFIX LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION @@ -40,6 +40,8 @@ AC_PATH_PROG(RM, rm, /bin/rm) AC_PATH_PROG(MV, mv, /bin/mv) AC_PATH_PROG(TAR, tar, /bin/tar) AC_PATH_PROG(PERL, perl, /usr/bin/perl) +AC_PATH_PROG(XMLLINT, xmllint, /usr/bin/xsltproc) +AC_PATH_PROG(XSLTPROC, xsltproc, /usr/bin/xsltproc) dnl Make sure we have an ANSI compiler AM_C_PROTOTYPES @@ -215,7 +217,7 @@ AC_TRY_COMPILE2([ AC_MSG_RESULT(int *) SOCKLEN_T=int],[ AC_MSG_WARN(could not determine) - SOCKLEN_T="unsigned int"])])]) + SOCKLEN_T="int"])])]) AC_DEFINE_UNQUOTED(SOCKLEN_T, $SOCKLEN_T, [Determine what socket length (socklen_t) data type is]) dnl ***********************Checking for availability of IPv6******************* @@ -1080,6 +1082,6 @@ rm -f COPYING.LIB COPYING ln -s Copyright COPYING # keep on one line for cygwin c.f. #130896 -AC_OUTPUT(libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py) +AC_OUTPUT(libxml2.spec:libxml.spec.in Makefile include/Makefile include/libxml/Makefile doc/Makefile doc/examples/Makefile example/Makefile python/Makefile python/tests/Makefile xstc/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc libxml-2.0-uninstalled.pc python/setup.py) chmod +x xml2-config python/setup.py @@ -85,13 +85,13 @@ xmlDebugDumpDtdNode(FILE *output, xmlDtdPtr dtd, int depth) { return; } if (dtd->name != NULL) - fprintf(output, "DTD(%s)", dtd->name); + fprintf(output, "DTD(%s)", (char *)dtd->name); else fprintf(output, "DTD"); if (dtd->ExternalID != NULL) - fprintf(output, ", PUBLIC %s", dtd->ExternalID); + fprintf(output, ", PUBLIC %s", (char *)dtd->ExternalID); if (dtd->SystemID != NULL) - fprintf(output, ", SYSTEM %s", dtd->SystemID); + fprintf(output, ", SYSTEM %s", (char *)dtd->SystemID); fprintf(output, "\n"); /* * Do a bit of checking @@ -138,11 +138,11 @@ xmlDebugDumpAttrDecl(FILE *output, xmlAttributePtr attr, int depth) { return; } if (attr->name != NULL) - fprintf(output, "ATTRDECL(%s)", attr->name); + fprintf(output, "ATTRDECL(%s)", (char *)attr->name); else fprintf(output, "PBM ATTRDECL noname!!!"); if (attr->elem != NULL) - fprintf(output, " for %s", attr->elem); + fprintf(output, " for %s", (char *)attr->elem); else fprintf(output, " PBM noelem!!!"); switch (attr->atype) { @@ -183,9 +183,9 @@ xmlDebugDumpAttrDecl(FILE *output, xmlAttributePtr attr, int depth) { for (indx = 0;indx < 5; indx++) { if (indx != 0) - fprintf(output, "|%s", cur->name); + fprintf(output, "|%s", (char *)cur->name); else - fprintf(output, " (%s", cur->name); + fprintf(output, " (%s", (char *)cur->name); cur = cur->next; if (cur == NULL) break; } @@ -364,15 +364,15 @@ xmlDebugDumpEntityDecl(FILE *output, xmlEntityPtr ent, int depth) { } if (ent->ExternalID) { fprintf(output, shift); - fprintf(output, " ExternalID=%s\n", ent->ExternalID); + fprintf(output, " ExternalID=%s\n", (char *)ent->ExternalID); } if (ent->SystemID) { fprintf(output, shift); - fprintf(output, " SystemID=%s\n", ent->SystemID); + fprintf(output, " SystemID=%s\n", (char *)ent->SystemID); } if (ent->URI != NULL) { fprintf(output, shift); - fprintf(output, " URI=%s\n", ent->URI); + fprintf(output, " URI=%s\n", (char *)ent->URI); } if (ent->content) { fprintf(output, shift); @@ -422,17 +422,18 @@ xmlDebugDumpNamespace(FILE *output, xmlNsPtr ns, int depth) { return; } if (ns->type != XML_NAMESPACE_DECL) { - fprintf(output, "invalid namespace node %d\n", ns->type); + fprintf(output, "invalid namespace node %d\n", (char *)ns->type); return; } if (ns->href == NULL) { if (ns->prefix != NULL) - fprintf(output, "incomplete namespace %s href=NULL\n", ns->prefix); + fprintf(output, "incomplete namespace %s href=NULL\n", + (char *)ns->prefix); else fprintf(output, "incomplete default namespace href=NULL\n"); } else { if (ns->prefix != NULL) - fprintf(output, "namespace %s href=", ns->prefix); + fprintf(output, "namespace %s href=", (char *)ns->prefix); else fprintf(output, "default namespace href="); @@ -481,20 +482,20 @@ xmlDebugDumpEntity(FILE *output, xmlEntityPtr ent, int depth) { fprintf(output, "EXTERNAL_PARAMETER_ENTITY "); break; default: - fprintf(output, "ENTITY_%d ! ", ent->etype); + fprintf(output, "ENTITY_%d ! ", (char *)ent->etype); } fprintf(output, "%s\n", ent->name); if (ent->ExternalID) { fprintf(output, shift); - fprintf(output, "ExternalID=%s\n", ent->ExternalID); + fprintf(output, "ExternalID=%s\n", (char *)ent->ExternalID); } if (ent->SystemID) { fprintf(output, shift); - fprintf(output, "SystemID=%s\n", ent->SystemID); + fprintf(output, "SystemID=%s\n", (char *)ent->SystemID); } if (ent->URI) { fprintf(output, shift); - fprintf(output, "URI=%s\n", ent->URI); + fprintf(output, "URI=%s\n", (char *)ent->URI); } if (ent->content) { fprintf(output, shift); @@ -627,7 +628,7 @@ xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) break; case XML_ENTITY_REF_NODE: fprintf(output, shift); - fprintf(output, "ENTITY_REF(%s)\n", node->name); + fprintf(output, "ENTITY_REF(%s)\n", (char *)node->name); break; case XML_ENTITY_NODE: fprintf(output, shift); @@ -635,7 +636,7 @@ xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) break; case XML_PI_NODE: fprintf(output, shift); - fprintf(output, "PI %s\n", node->name); + fprintf(output, "PI %s\n", (char *)node->name); break; case XML_COMMENT_NODE: fprintf(output, shift); @@ -683,7 +684,7 @@ xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) return; default: fprintf(output, shift); - fprintf(output, "NODE_%d !!!\n", node->type); + fprintf(output, "NODE_%d !!!\n", (char *)node->type); return; } if (node->doc == NULL) { @@ -845,7 +846,7 @@ xmlDebugDumpDocumentHead(FILE * output, xmlDocPtr doc) fprintf(output, "Error, NOTATION\n"); break; default: - fprintf(output, "NODE_%d\n", doc->type); + fprintf(output, "NODE_%d\n", (char *)doc->type); } if (doc->name != NULL) { fprintf(output, "name="); @@ -916,13 +917,13 @@ xmlDebugDumpDTD(FILE * output, xmlDtdPtr dtd) return; } if (dtd->name != NULL) - fprintf(output, "DTD(%s)", dtd->name); + fprintf(output, "DTD(%s)", (char *)dtd->name); else fprintf(output, "DTD"); if (dtd->ExternalID != NULL) - fprintf(output, ", PUBLIC %s", dtd->ExternalID); + fprintf(output, ", PUBLIC %s", (char *)dtd->ExternalID); if (dtd->SystemID != NULL) - fprintf(output, ", SYSTEM %s", dtd->SystemID); + fprintf(output, ", SYSTEM %s", (char *)dtd->SystemID); fprintf(output, "\n"); /* * Do a bit of checking @@ -958,7 +959,7 @@ xmlDebugDumpEntityCallback(xmlEntityPtr cur, FILE *output) { fprintf(output, "Entity is NULL"); return; } - fprintf(output, "%s : ", cur->name); + fprintf(output, "%s : ", (char *)cur->name); switch (cur->etype) { case XML_INTERNAL_GENERAL_ENTITY: fprintf(output, "INTERNAL GENERAL, "); @@ -977,17 +978,17 @@ xmlDebugDumpEntityCallback(xmlEntityPtr cur, FILE *output) { break; default: fprintf(output, "UNKNOWN TYPE %d", - cur->etype); + (char *)cur->etype); } if (cur->ExternalID != NULL) - fprintf(output, "ID \"%s\"", cur->ExternalID); + fprintf(output, "ID \"%s\"", (char *)cur->ExternalID); if (cur->SystemID != NULL) - fprintf(output, "SYSTEM \"%s\"", cur->SystemID); + fprintf(output, "SYSTEM \"%s\"", (char *)cur->SystemID); if (cur->orig != NULL) - fprintf(output, "\n orig \"%s\"", cur->orig); + fprintf(output, "\n orig \"%s\"", (char *)cur->orig); if ((cur->type != XML_ELEMENT_NODE) && (cur->content != NULL)) - fprintf(output, "\n content \"%s\"", cur->content); + fprintf(output, "\n content \"%s\"", (char *)cur->content); fprintf(output, "\n"); } @@ -1049,7 +1050,7 @@ xmlDebugDumpEntities(FILE * output, xmlDocPtr doc) fprintf(output, "Error, NOTATION\n"); break; default: - fprintf(output, "NODE_%d\n", doc->type); + fprintf(output, "NODE_%d\n", (char *)doc->type); } if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) { xmlEntitiesTablePtr table = (xmlEntitiesTablePtr) @@ -1245,9 +1246,10 @@ xmlLsOneNode(FILE *output, xmlNodePtr node) { xmlNsPtr ns = (xmlNsPtr) node; if (ns->prefix == NULL) - fprintf(output, "default -> %s", ns->href); + fprintf(output, "default -> %s", (char *)ns->href); else - fprintf(output, "%s -> %s", ns->prefix, ns->href); + fprintf(output, "%s -> %s", (char *)ns->prefix, + (char *)ns->href); break; } default: diff --git a/doc/APIchunk0.html b/doc/APIchunk0.html index f249ca0..919c1ce 100644 --- a/doc/APIchunk0.html +++ b/doc/APIchunk0.html @@ -59,8 +59,11 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> <a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> <a href="html/libxml-tree.html#xmlValidateName">xmlValidateName</a><br /> diff --git a/doc/APIchunk1.html b/doc/APIchunk1.html index 9aa46f8..d46e292 100644 --- a/doc/APIchunk1.html +++ b/doc/APIchunk1.html @@ -147,7 +147,6 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>Changes</dt><dd><a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> </dd><dt>Char</dt><dd><a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> <a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> -<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> <a href="html/libxml-parserInternals.html#xmlParseCDSect">xmlParseCDSect</a><br /> <a href="html/libxml-parserInternals.html#xmlParseCharRef">xmlParseCharRef</a><br /> <a href="html/libxml-parserInternals.html#xmlParseComment">xmlParseComment</a><br /> diff --git a/doc/APIchunk10.html b/doc/APIchunk10.html index 4b83fff..0bf6040 100644 --- a/doc/APIchunk10.html +++ b/doc/APIchunk10.html @@ -216,7 +216,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-uri.html#xmlBuildURI">xmlBuildURI</a><br /> <a href="html/libxml-xmlstring.html#xmlUTF8Strlen">xmlUTF8Strlen</a><br /> </dd><dt>checkings</dt><dd><a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> -</dd><dt>checks</dt><dd><a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> +</dd><dt>checks</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> +<a href="html/libxml-HTMLparser.html#htmlAutoCloseTag">htmlAutoCloseTag</a><br /> <a href="html/libxml-HTMLparser.html#htmlIsAutoClosed">htmlIsAutoClosed</a><br /> <a href="html/libxml-HTMLparser.html#htmlNodeStatus">htmlNodeStatus</a><br /> <a href="html/libxml-xmlIO.html#xmlCheckFilename">xmlCheckFilename</a><br /> @@ -260,6 +261,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parser.html#xmlParseExternalEntity">xmlParseExternalEntity</a><br /> <a href="html/libxml-parser.html#xmlParseInNodeContext">xmlParseInNodeContext</a><br /> <a href="html/libxml-parser.html#xmlSAXParseEntity">xmlSAXParseEntity</a><br /> +</dd><dt>circular</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> </dd><dt>cleanly</dt><dd><a href="html/libxml-xmlIO.html#xmlCheckHTTPInput">xmlCheckHTTPInput</a><br /> </dd><dt>cleans</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> @@ -437,13 +439,18 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-catalog.html#xmlCatalogResolve">xmlCatalogResolve</a><br /> <a href="html/libxml-catalog.html#xmlCatalogResolveURI">xmlCatalogResolveURI</a><br /> </dd><dt>completed</dt><dd><a href="html/libxml-valid.html#xmlValidateDocumentFinal">xmlValidateDocumentFinal</a><br /> -</dd><dt>completely</dt><dd><a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> +</dd><dt>completely</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> +<a href="html/libxml-tree.html#xmlNodeGetBase">xmlNodeGetBase</a><br /> </dd><dt>complex</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> -</dd><dt>complexType</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> +</dd><dt>complexType</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> </dd><dt>complicated</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> +</dd><dt>components</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> </dd><dt>compound</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> <a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> </dd><dt>compress</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> @@ -593,7 +600,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpathInternals.html#xmlXPathSubstringBeforeFunction">xmlXPathSubstringBeforeFunction</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> -</dd><dt>contained</dt><dd><a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> +</dd><dt>contained</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> +<a href="html/libxml-tree.html#xmlNodeListGetRawString">xmlNodeListGetRawString</a><br /> <a href="html/libxml-tree.html#xmlNodeListGetString">xmlNodeListGetString</a><br /> <a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> <a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> @@ -754,10 +762,12 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> </dd><dt>creates</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-uri.html#xmlCreateURI">xmlCreateURI</a><br /> @@ -767,6 +777,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-globals.html#xmlRegisterNodeDefault">xmlRegisterNodeDefault</a><br /> </dd><dt>cross</dt><dd><a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> </dd><dt>crossed</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> </dd><dt>cshema</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a><br /> </dd><dt>ctrio</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsInf">xmlXPathIsInf</a><br /> <a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> diff --git a/doc/APIchunk11.html b/doc/APIchunk11.html index 4363ea6..08394e5 100644 --- a/doc/APIchunk11.html +++ b/doc/APIchunk11.html @@ -356,7 +356,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-dict.html#xmlDictReference">xmlDictReference</a><br /> <a href="html/libxml-dict.html#xmlDictSize">xmlDictSize</a><br /> <a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> -</dd><dt>did</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> +</dd><dt>did</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> </dd><dt>difference</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> </dd><dt>different</dt><dd><a href="html/libxml-catalog.html#xmlACatalogAdd">xmlACatalogAdd</a><br /> <a href="html/libxml-tree.html#xmlBuildQName">xmlBuildQName</a><br /> diff --git a/doc/APIchunk12.html b/doc/APIchunk12.html index 056a63d..b3718e6 100644 --- a/doc/APIchunk12.html +++ b/doc/APIchunk12.html @@ -302,6 +302,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlwriter.html#xmlTextWriterFullEndElement">xmlTextWriterFullEndElement</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathRoundFunction">xmlXPathRoundFunction</a><br /> </dd><dt>events</dt><dd><a href="html/libxml-HTMLparser.html#htmlSAXParseDoc">htmlSAXParseDoc</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> </dd><dt>everywhere</dt><dd><a href="html/libxml-parser.html#xmlSAXParseFileWithData">xmlSAXParseFileWithData</a><br /> <a href="html/libxml-parser.html#xmlSAXParseMemoryWithData">xmlSAXParseMemoryWithData</a><br /> </dd><dt>exact</dt><dd><a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> @@ -370,6 +371,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpointer.html#xmlXPtrLocationSetMerge">xmlXPtrLocationSetMerge</a><br /> </dd><dt>extension</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a><br /> </dd><dt>extensions</dt><dd><a href="html/libxml-parser.html#_xmlSAXHandler">_xmlSAXHandler</a><br /> diff --git a/doc/APIchunk13.html b/doc/APIchunk13.html index bb0e4de..ef683dd 100644 --- a/doc/APIchunk13.html +++ b/doc/APIchunk13.html @@ -367,7 +367,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxNGGetValidErrors">xmlRelaxNGGetValidErrors</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGSetParserErrors">xmlRelaxNGSetParserErrors</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> <a href="html/libxml-debugXML.html#xmlShellCmd">xmlShellCmd</a><br /> <a href="html/libxml-parserInternals.html#xmlSwitchEncoding">xmlSwitchEncoding</a><br /> <a href="html/libxml-parserInternals.html#xmlSwitchInputEncoding">xmlSwitchInputEncoding</a><br /> diff --git a/doc/APIchunk14.html b/doc/APIchunk14.html index e827c1a..9452707 100644 --- a/doc/APIchunk14.html +++ b/doc/APIchunk14.html @@ -117,6 +117,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-valid.html#xmlValidateNotationDecl">xmlValidateNotationDecl</a><br /> </dd><dt>gif</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> </dd><dt>give</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> +<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> </dd><dt>gives</dt><dd><a href="html/libxml-xmlerror.html#xmlParserError">xmlParserError</a><br /> <a href="html/libxml-xmlerror.html#xmlParserValidityError">xmlParserValidityError</a><br /> <a href="html/libxml-xmlerror.html#xmlParserValidityWarning">xmlParserValidityWarning</a><br /> @@ -147,7 +148,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpathInternals.html#xmlXPathFloorFunction">xmlXPathFloorFunction</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> </dd><dt>greater-than</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> -</dd><dt>group</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> +</dd><dt>group</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a><br /> <a href="html/libxml-schemasInternals.html#_xmlSchemaAttribute">_xmlSchemaAttribute</a><br /> <a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> <a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> @@ -229,6 +231,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpathInternals.html#xmlXPathPopString">xmlXPathPopString</a><br /> </dd><dt>has-same-nodes</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathHasSameNodes">xmlXPathHasSameNodes</a><br /> </dd><dt>have</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> <a href="html/libxml-HTMLparser.html#_htmlElemDesc">_htmlElemDesc</a><br /> <a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> @@ -258,6 +261,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlstring.html#xmlStrstr">xmlStrstr</a><br /> <a href="html/libxml-xmlstring.html#xmlStrsub">xmlStrsub</a><br /> </dd><dt>header</dt><dd><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> <a href="html/libxml-parserInternals.html#xmlParseTextDecl">xmlParseTextDecl</a><br /> <a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> diff --git a/doc/APIchunk15.html b/doc/APIchunk15.html index a40c3f2..8e9377c 100644 --- a/doc/APIchunk15.html +++ b/doc/APIchunk15.html @@ -139,6 +139,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-c14n.html#xmlC14NDocSaveTo">xmlC14NDocSaveTo</a><br /> <a href="html/libxml-tree.html#xmlDocDumpMemory">xmlDocDumpMemory</a><br /> <a href="html/libxml-tree.html#xmlFreeDoc">xmlFreeDoc</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-parserInternals.html#xmlParseNotationType">xmlParseNotationType</a><br /> </dd><dt>includes</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> <a href="html/libxml-xmlIO.html#xmlCleanupInputCallbacks">xmlCleanupInputCallbacks</a><br /> @@ -212,6 +213,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>indicates</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPRead">xmlNanoFTPRead</a><br /> <a href="html/libxml-nanoftp.html#xmlNanoFTPScanProxy">xmlNanoFTPScanProxy</a><br /> <a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPScanProxy">xmlNanoHTTPScanProxy</a><br /> </dd><dt>indicating</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> @@ -268,6 +270,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlreader.html#xmlNewTextReader">xmlNewTextReader</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGGetParserErrors">xmlRelaxNGGetParserErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> </dd><dt>informations</dt><dd><a href="html/libxml-tree.html#_xmlAttr">_xmlAttr</a><br /> <a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> @@ -289,6 +292,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxParserSetFlag">xmlRelaxParserSetFlag</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2EndElementNs">xmlSAX2EndElementNs</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2StartElementNs">xmlSAX2StartElementNs</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> <a href="html/libxml-debugXML.html#xmlShellDir">xmlShellDir</a><br /> <a href="html/libxml-xinclude.html#xmlXIncludeProcessNode">xmlXIncludeProcessNode</a><br /> </dd><dt>informative</dt><dd><a href="html/libxml-xmlerror.html#_xmlError">_xmlError</a><br /> @@ -488,7 +493,8 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>isnan</dt><dd><a href="html/libxml-xpath.html#xmlXPathIsNaN">xmlXPathIsNaN</a><br /> </dd><dt>issue</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> </dd><dt>issued</dt><dd><a href="html/libxml-xlink.html#xlinkIsLink">xlinkIsLink</a><br /> -</dd><dt>item</dt><dd><a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> +</dd><dt>item</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-xpath.html#_xmlXPathContext">_xmlXPathContext</a><br /> <a href="html/libxml-hash.html#xmlHashRemoveEntry">xmlHashRemoveEntry</a><br /> <a href="html/libxml-hash.html#xmlHashRemoveEntry2">xmlHashRemoveEntry2</a><br /> <a href="html/libxml-hash.html#xmlHashRemoveEntry3">xmlHashRemoveEntry3</a><br /> diff --git a/doc/APIchunk17.html b/doc/APIchunk17.html index 2abb3c6..0ed1b80 100644 --- a/doc/APIchunk17.html +++ b/doc/APIchunk17.html @@ -78,7 +78,8 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>mark</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> <a href="html/libxml-xmlstring.html#xmlStrdup">xmlStrdup</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderQuoteChar">xmlTextReaderQuoteChar</a><br /> -</dd><dt>marked</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> +</dd><dt>marked</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> +<a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> </dd><dt>marker</dt><dd><a href="html/libxml-parserInternals.html#xmlDecodeEntities">xmlDecodeEntities</a><br /> <a href="html/libxml-parserInternals.html#xmlStringDecodeEntities">xmlStringDecodeEntities</a><br /> <a href="html/libxml-parserInternals.html#xmlStringLenDecodeEntities">xmlStringLenDecodeEntities</a><br /> @@ -129,7 +130,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlstring.html#xmlStrncmp">xmlStrncmp</a><br /> </dd><dt>maximal</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> </dd><dt>maximum</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlstring.html#xmlCheckUTF8">xmlCheckUTF8</a><br /> </dd><dt>means</dt><dd><a href="html/libxml-xmlerror.html#xmlSetGenericErrorFunc">xmlSetGenericErrorFunc</a><br /> <a href="html/libxml-xmlerror.html#xmlSetStructuredErrorFunc">xmlSetStructuredErrorFunc</a><br /> @@ -202,9 +205,12 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>migrate</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> </dd><dt>minimal</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> </dd><dt>minimum</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-tree.html#xmlBufferGrow">xmlBufferGrow</a><br /> <a href="html/libxml-tree.html#xmlBufferResize">xmlBufferResize</a><br /> +<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> </dd><dt>minus</dt><dd><a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> </dd><dt>minute</dt><dd><a href="html/libxml-nanoftp.html#ftpListCallback">ftpListCallback</a><br /> </dd><dt>misleading</dt><dd><a href="html/libxml-parserInternals.html#xmlParsePEReference">xmlParsePEReference</a><br /> @@ -257,6 +263,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlreader.html#xmlTextReaderReadAttributeValue">xmlTextReaderReadAttributeValue</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> </dd><dt>moreover</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> </dd><dt>most</dt><dd><a href="html/libxml-c14n.html#xmlC14NExecute">xmlC14NExecute</a><br /> <a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> </dd><dt>moved</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderMoveToElement">xmlTextReaderMoveToElement</a><br /> diff --git a/doc/APIchunk18.html b/doc/APIchunk18.html index b4d1e0f..e9a2712 100644 --- a/doc/APIchunk18.html +++ b/doc/APIchunk18.html @@ -38,6 +38,7 @@ A:link, A:visited, A:active { text-decoration: underline } </h2><h2>Letter n:</h2><dl><dt>named</dt><dd><a href="html/libxml-encoding.html#xmlAddEncodingAlias">xmlAddEncodingAlias</a><br /> </dd><dt>names</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> <a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> +<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> <a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> <a href="html/libxml-parser.html#xmlGetFeaturesList">xmlGetFeaturesList</a><br /> <a href="html/libxml-hash.html#xmlHashAddEntry">xmlHashAddEntry</a><br /> diff --git a/doc/APIchunk19.html b/doc/APIchunk19.html index baa72de..b4badd8 100644 --- a/doc/APIchunk19.html +++ b/doc/APIchunk19.html @@ -62,7 +62,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-list.html#xmlListRemoveFirst">xmlListRemoveFirst</a><br /> <a href="html/libxml-list.html#xmlListRemoveLast">xmlListRemoveLast</a><br /> </dd><dt>occurences</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> </dd><dt>occurred</dt><dd><a href="html/libxml-xmlmemory.html#xmlMemStrdupLoc">xmlMemStrdupLoc</a><br /> </dd><dt>occurrence</dt><dd><a href="html/libxml-xmlstring.html#xmlStrcasestr">xmlStrcasestr</a><br /> <a href="html/libxml-xmlstring.html#xmlStrchr">xmlStrchr</a><br /> @@ -118,6 +120,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpathInternals.html#xmlXPathStringLengthFunction">xmlXPathStringLengthFunction</a><br /> </dd><dt>once</dt><dd><a href="html/libxml-parserInternals.html#htmlInitAutoClose">htmlInitAutoClose</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-threads.html#xmlCleanupThreads">xmlCleanupThreads</a><br /> <a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> <a href="html/libxml-parser.html#xmlInitParser">xmlInitParser</a><br /> @@ -140,6 +143,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parser.html#startElementNsSAX2Func">startElementNsSAX2Func</a><br /> <a href="html/libxml-catalog.html#xmlCatalogConvert">xmlCatalogConvert</a><br /> <a href="html/libxml-catalog.html#xmlConvertSGMLCatalog">xmlConvertSGMLCatalog</a><br /> +</dd><dt>ononymous</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> </dd><dt>onto</dt><dd><a href="html/libxml-xmlIO.html#xmlParserInputBufferGrow">xmlParserInputBufferGrow</a><br /> </dd><dt>opaque</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> <a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> @@ -220,6 +224,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlIO.html#xmlOutputBufferWriteEscape">xmlOutputBufferWriteEscape</a><br /> <a href="html/libxml-parserInternals.html#xmlParseMisc">xmlParseMisc</a><br /> <a href="html/libxml-pattern.html#xmlPatterncompile">xmlPatterncompile</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-debugXML.html#xmlShellSave">xmlShellSave</a><br /> <a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> <a href="html/libxml-uri.html#xmlURIUnescapeString">xmlURIUnescapeString</a><br /> diff --git a/doc/APIchunk20.html b/doc/APIchunk20.html index 44eccb0..575147e 100644 --- a/doc/APIchunk20.html +++ b/doc/APIchunk20.html @@ -196,9 +196,12 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderPreservePattern">xmlTextReaderPreservePattern</a><br /> <a href="html/libxml-tree.html#xmlValidateNCName">xmlValidateNCName</a><br /> <a href="html/libxml-tree.html#xmlValidateNMToken">xmlValidateNMToken</a><br /> @@ -246,6 +249,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-pattern.html#xmlPatternMatch">xmlPatternMatch</a><br /> <a href="html/libxml-xmlregexp.html#xmlRegNewExecCtxt">xmlRegNewExecCtxt</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathDebugDumpCompExpr">xmlXPathDebugDumpCompExpr</a><br /> </dd><dt>precomputed</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> @@ -281,6 +285,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>present</dt><dd><a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> <a href="html/libxml-dict.html#xmlDictLookup">xmlDictLookup</a><br /> <a href="html/libxml-dict.html#xmlDictQLookup">xmlDictQLookup</a><br /> +<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> <a href="html/libxml-tree.html#xmlNewNs">xmlNewNs</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderConstValue">xmlTextReaderConstValue</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderValue">xmlTextReaderValue</a><br /> @@ -457,6 +462,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlIO.html#xmlOutputMatchCallback">xmlOutputMatchCallback</a><br /> <a href="html/libxml-tree.html#xmlSaveFormatFile">xmlSaveFormatFile</a><br /> <a href="html/libxml-tree.html#xmlSaveFormatFileEnc">xmlSaveFormatFileEnc</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-xmlstring.html#xmlUTF8Strloc">xmlUTF8Strloc</a><br /> <a href="html/libxml-xmlstring.html#xmlUTF8Strpos">xmlUTF8Strpos</a><br /> </dd><dt>provides</dt><dd><a href="html/libxml-parser.html#endElementNsSAX2Func">endElementNsSAX2Func</a><br /> diff --git a/doc/APIchunk21.html b/doc/APIchunk21.html index fb10689..fae5dfe 100644 --- a/doc/APIchunk21.html +++ b/doc/APIchunk21.html @@ -136,7 +136,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlreader.html#xmlTextReaderReadString">xmlTextReaderReadString</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> </dd><dt>reader-</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>reading</dt><dd><a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> +</dd><dt>reading</dt><dd><a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> +<a href="html/libxml-debugXML.html#xmlShell">xmlShell</a><br /> </dd><dt>ready</dt><dd><a href="html/libxml-parserInternals.html#INPUT_CHUNK">INPUT_CHUNK</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataCompile">xmlAutomataCompile</a><br /> </dd><dt>realloc</dt><dd><a href="html/libxml-tree.html#_xmlBuffer">_xmlBuffer</a><br /> @@ -243,13 +244,16 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-threads.html#xmlNewRMutex">xmlNewRMutex</a><br /> <a href="html/libxml-threads.html#xmlRMutexLock">xmlRMutexLock</a><br /> <a href="html/libxml-threads.html#xmlRMutexUnlock">xmlRMutexUnlock</a><br /> -</dd><dt>ref</dt><dd><a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> +</dd><dt>ref</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> +<a href="html/libxml-entities.html#_xmlEntity">_xmlEntity</a><br /> <a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> <a href="html/libxml-valid.html#xmlFreeRefTable">xmlFreeRefTable</a><br /> <a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> -</dd><dt>referenced</dt><dd><a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> +</dd><dt>referenced</dt><dd><a href="html/libxml-schemasInternals.html#_xmlSchemaAttributeGroup">_xmlSchemaAttributeGroup</a><br /> +<a href="html/libxml-list.html#xmlLinkGetData">xmlLinkGetData</a><br /> <a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> -</dd><dt>references</dt><dd><a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> +</dd><dt>references</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> +<a href="html/libxml-HTMLparser.html#htmlParseEntityRef">htmlParseEntityRef</a><br /> <a href="html/libxml-valid.html#xmlGetRefs">xmlGetRefs</a><br /> <a href="html/libxml-catalog.html#xmlLoadSGMLSuperCatalog">xmlLoadSGMLSuperCatalog</a><br /> <a href="html/libxml-tree.html#xmlNewChild">xmlNewChild</a><br /> @@ -472,7 +476,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-SAX2.html#xmlSAX2ResolveEntity">xmlSAX2ResolveEntity</a><br /> </dd><dt>resolveEntity</dt><dd><a href="html/libxml-SAX.html#resolveEntity">resolveEntity</a><br /> <a href="html/libxml-parser.html#resolveEntitySAXFunc">resolveEntitySAXFunc</a><br /> -</dd><dt>resolved</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> +</dd><dt>resolved</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a><br /> +<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> </dd><dt>resolver</dt><dd><a href="html/libxml-parser.html#xmlGetExternalEntityLoader">xmlGetExternalEntityLoader</a><br /> <a href="html/libxml-parser.html#xmlSetExternalEntityLoader">xmlSetExternalEntityLoader</a><br /> </dd><dt>resources</dt><dd><a href="html/libxml-parser.html#xmlClearParserCtxt">xmlClearParserCtxt</a><br /> @@ -484,11 +489,13 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxNGFreeParserCtxt">xmlRelaxNGFreeParserCtxt</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGFreeValidCtxt">xmlRelaxNGFreeValidCtxt</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderClose">xmlTextReaderClose</a><br /> <a href="html/libxml-xinclude.html#xmlXIncludeSetFlags">xmlXIncludeSetFlags</a><br /> </dd><dt>respecting</dt><dd><a href="html/libxml-valid.html#xmlValidGetValidElements">xmlValidGetValidElements</a><br /> </dd><dt>response</dt><dd><a href="html/libxml-nanoftp.html#xmlNanoFTPCheckResponse">xmlNanoFTPCheckResponse</a><br /> <a href="html/libxml-nanoftp.html#xmlNanoFTPGetResponse">xmlNanoFTPGetResponse</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> </dd><dt>responsible</dt><dd><a href="html/libxml-c14n.html#xmlC14NDocDumpMemory">xmlC14NDocDumpMemory</a><br /> <a href="html/libxml-uri.html#xmlCanonicPath">xmlCanonicPath</a><br /> </dd><dt>restored</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> diff --git a/doc/APIchunk22.html b/doc/APIchunk22.html index 3b9c860..916d010 100644 --- a/doc/APIchunk22.html +++ b/doc/APIchunk22.html @@ -119,7 +119,9 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>schemas</dt><dd><a href="html/libxml-relaxng.html#xmlRelaxNGNewDocParserCtxt">xmlRelaxNGNewDocParserCtxt</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGNewMemParserCtxt">xmlRelaxNGNewMemParserCtxt</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> </dd><dt>scheme</dt><dd><a href="html/libxml-uri.html#_xmlURI">_xmlURI</a><br /> <a href="html/libxml-tree.html#xmlBufferSetAllocationScheme">xmlBufferSetAllocationScheme</a><br /> <a href="html/libxml-tree.html#xmlGetBufferAllocationScheme">xmlGetBufferAllocationScheme</a><br /> @@ -231,6 +233,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xpathInternals.html#xmlXPathTrailing">xmlXPathTrailing</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathTrailingSorted">xmlXPathTrailingSorted</a><br /> </dd><dt>sets</dt><dd><a href="html/libxml-SAX.html#initxmlDefaultSAXHandler">initxmlDefaultSAXHandler</a><br /> +<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathIntersection">xmlXPathIntersection</a><br /> @@ -295,7 +298,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-valid.html#xmlValidityWarningFunc">xmlValidityWarningFunc</a><br /> <a href="html/libxml-xpath.html#xmlXPathNodeSetGetLength">xmlXPathNodeSetGetLength</a><br /> <a href="html/libxml-xpath.html#xmlXPathNodeSetItem">xmlXPathNodeSetItem</a><br /> -</dd><dt>simple</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> +</dd><dt>simple</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> <a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> <a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> @@ -452,7 +456,8 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>specification</dt><dd><a href="html/libxml-tree.html#XML_XML_NAMESPACE">XML_XML_NAMESPACE</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderNormalization">xmlTextReaderNormalization</a><br /> </dd><dt>specifications</dt><dd><a href="html/libxml-parserInternals.html#xmlParseSDDecl">xmlParseSDDecl</a><br /> -</dd><dt>specify</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> +</dd><dt>specify</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> </dd><dt>specifying</dt><dd><a href="html/libxml-xmlmemory.html#xmlMallocAtomicLoc">xmlMallocAtomicLoc</a><br /> <a href="html/libxml-xmlmemory.html#xmlMallocLoc">xmlMallocLoc</a><br /> <a href="html/libxml-xmlmemory.html#xmlReallocLoc">xmlReallocLoc</a><br /> @@ -495,16 +500,19 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>started</dt><dd><a href="html/libxml-xmlwriter.html#xmlTextWriterWriteDTDExternalEntity">xmlTextWriterWriteDTDExternalEntity</a><br /> </dd><dt>starting</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-parser.html#xmlByteConsumed">xmlByteConsumed</a><br /> <a href="html/libxml-tree.html#xmlNewCharRef">xmlNewCharRef</a><br /> <a href="html/libxml-xmlwriter.html#xmlNewTextWriterTree">xmlNewTextWriterTree</a><br /> <a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xpath.html#xmlXPathOrderDocElems">xmlXPathOrderDocElems</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathSubstringFunction">xmlXPathSubstringFunction</a><br /> <a href="html/libxml-xpointer.html#xmlXPtrNewCollapsedRange">xmlXPtrNewCollapsedRange</a><br /> @@ -699,6 +707,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-tree.html#xmlReconciliateNs">xmlReconciliateNs</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> <a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-debugXML.html#xmlShellDu">xmlShellDu</a><br /> <a href="html/libxml-debugXML.html#xmlShellWrite">xmlShellWrite</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderExpand">xmlTextReaderExpand</a><br /> @@ -741,9 +750,13 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlreader.html#xmlTextReaderNextSibling">xmlTextReaderNextSibling</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderRead">xmlTextReaderRead</a><br /> </dd><dt>succession</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> </dd><dt>successive</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> </dd><dt>such</dt><dd><a href="html/libxml-tree.html#xmlNewTextChild">xmlNewTextChild</a><br /> <a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> <a href="html/libxml-valid.html#xmlValidityErrorFunc">xmlValidityErrorFunc</a><br /> diff --git a/doc/APIchunk23.html b/doc/APIchunk23.html index 842ee56..50888bd 100644 --- a/doc/APIchunk23.html +++ b/doc/APIchunk23.html @@ -210,7 +210,9 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>titles</dt><dd><a href="html/libxml-xlink.html#xlinkExtendedLinkFunk">xlinkExtendedLinkFunk</a><br /> <a href="html/libxml-xlink.html#xlinkExtendedLinkSetFunk">xlinkExtendedLinkSetFunk</a><br /> </dd><dt>token</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-threads.html#xmlFreeMutex">xmlFreeMutex</a><br /> <a href="html/libxml-threads.html#xmlMutexLock">xmlMutexLock</a><br /> <a href="html/libxml-threads.html#xmlMutexUnlock">xmlMutexUnlock</a><br /> diff --git a/doc/APIchunk24.html b/doc/APIchunk24.html index df5a637..93dd071 100644 --- a/doc/APIchunk24.html +++ b/doc/APIchunk24.html @@ -67,6 +67,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> </dd><dt>unique</dt><dd><a href="html/libxml-parser.html#_xmlParserInput">_xmlParserInput</a><br /> +<a href="html/libxml-schemasInternals.html#_xmlSchema">_xmlSchema</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathIdFunction">xmlXPathIdFunction</a><br /> </dd><dt>uniquely</dt><dd><a href="html/libxml-parserInternals.html#xmlParseAttributeType">xmlParseAttributeType</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathStringFunction">xmlXPathStringFunction</a><br /> @@ -154,7 +155,6 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parserInternals.html#xmlNamespaceParseQName">xmlNamespaceParseQName</a><br /> <a href="html/libxml-parserInternals.html#xmlSplitQName">xmlSplitQName</a><br /> <a href="html/libxml-tree.html#xmlSplitQName2">xmlSplitQName2</a><br /> -</dd><dt>updates</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> </dd><dt>upon</dt><dd><a href="html/libxml-SAX.html#checkNamespace">checkNamespace</a><br /> <a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> </dd><dt>upper</dt><dd><a href="html/libxml-valid.html#xmlIsRef">xmlIsRef</a><br /> diff --git a/doc/APIchunk25.html b/doc/APIchunk25.html index d734f7c..4aa21d1 100644 --- a/doc/APIchunk25.html +++ b/doc/APIchunk25.html @@ -60,7 +60,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-relaxng.html#xmlRelaxNGSetValidErrors">xmlRelaxNGSetValidErrors</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2InitDefaultSAXHandler">xmlSAX2InitDefaultSAXHandler</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> <a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderSetErrorHandler">xmlTextReaderSetErrorHandler</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderSetStructuredErrorHandler">xmlTextReaderSetStructuredErrorHandler</a><br /> @@ -154,7 +156,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parser.html#ignorableWhitespaceSAXFunc">ignorableWhitespaceSAXFunc</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2IgnorableWhitespace">xmlSAX2IgnorableWhitespace</a><br /> </dd><dt>whose</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderLookupNamespace">xmlTextReaderLookupNamespace</a><br /> </dd><dt>wierd</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> </dd><dt>wildcard</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> @@ -168,6 +172,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>with_ns</dt><dd><a href="html/libxml-xpath.html#_xmlNodeSet">_xmlNodeSet</a><br /> </dd><dt>within</dt><dd><a href="html/libxml-valid.html#_xmlValidCtxt">_xmlValidCtxt</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> +<a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> <a href="html/libxml-tree.html#xmlNewDocComment">xmlNewDocComment</a><br /> <a href="html/libxml-tree.html#xmlNewDocNode">xmlNewDocNode</a><br /> <a href="html/libxml-tree.html#xmlNewDocNodeEatName">xmlNewDocNodeEatName</a><br /> diff --git a/doc/APIchunk26.html b/doc/APIchunk26.html index 3e872f4..9721bad 100644 --- a/doc/APIchunk26.html +++ b/doc/APIchunk26.html @@ -48,6 +48,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> <a href="html/libxml-parserInternals.html#IS_PUBIDCHAR">IS_PUBIDCHAR</a><br /> <a href="html/libxml-parserInternals.html#xmlParseAttValue">xmlParseAttValue</a><br /> +<a href="html/libxml-parserInternals.html#xmlParseName">xmlParseName</a><br /> +<a href="html/libxml-parserInternals.html#xmlParseNmtoken">xmlParseNmtoken</a><br /> <a href="html/libxml-valid.html#xmlValidCtxtNormalizeAttributeValue">xmlValidCtxtNormalizeAttributeValue</a><br /> <a href="html/libxml-valid.html#xmlValidNormalizeAttributeValue">xmlValidNormalizeAttributeValue</a><br /> </dd><dt>x20-</dt><dd><a href="html/libxml-parserInternals.html#IS_CHAR">IS_CHAR</a><br /> diff --git a/doc/APIchunk3.html b/doc/APIchunk3.html index 4180646..d6697c2 100644 --- a/doc/APIchunk3.html +++ b/doc/APIchunk3.html @@ -148,6 +148,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-SAX2.html#xmlSAX2GetEntity">xmlSAX2GetEntity</a><br /> <a href="html/libxml-SAX2.html#xmlSAX2GetParameterEntity">xmlSAX2GetParameterEntity</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaGetParserErrors">xmlSchemaGetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderConstString">xmlTextReaderConstString</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderNodeType">xmlTextReaderNodeType</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathGetContextNode">xmlXPathGetContextNode</a><br /> diff --git a/doc/APIchunk4.html b/doc/APIchunk4.html index 7cced33..d689430 100644 --- a/doc/APIchunk4.html +++ b/doc/APIchunk4.html @@ -118,6 +118,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>Malayalam</dt><dd><a href="html/libxml-xmlunicode.html#xmlUCSIsMalayalam">xmlUCSIsMalayalam</a><br /> </dd><dt>Maps</dt><dd><a href="html/libxml-tree.html#xmlChildrenNode">xmlChildrenNode</a><br /> <a href="html/libxml-tree.html#xmlRootNode">xmlRootNode</a><br /> +</dd><dt>Marks</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> </dd><dt>Markup</dt><dd><a href="html/libxml-parserInternals.html#xmlParseExternalSubset">xmlParseExternalSubset</a><br /> <a href="html/libxml-parserInternals.html#xmlParseMarkupDecl">xmlParseMarkupDecl</a><br /> </dd><dt>Match</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElement">xmlParseElement</a><br /> @@ -281,6 +282,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-tree.html#xmlDocDumpFormatMemoryEnc">xmlDocDumpFormatMemoryEnc</a><br /> <a href="html/libxml-tree.html#xmlDocDumpMemoryEnc">xmlDocDumpMemoryEnc</a><br /> <a href="html/libxml-tree.html#xmlDocFormatDump">xmlDocFormatDump</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-tree.html#xmlNodeDump">xmlNodeDump</a><br /> <a href="html/libxml-tree.html#xmlNodeDumpOutput">xmlNodeDumpOutput</a><br /> <a href="html/libxml-encoding.html#xmlParseCharEncoding">xmlParseCharEncoding</a><br /> diff --git a/doc/APIchunk5.html b/doc/APIchunk5.html index 20f3521..dbed0af 100644 --- a/doc/APIchunk5.html +++ b/doc/APIchunk5.html @@ -192,6 +192,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> <a href="html/libxml-xmlmemory.html#xmlMemGet">xmlMemGet</a><br /> <a href="html/libxml-xmlmemory.html#xmlMemUsed">xmlMemUsed</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPRedir">xmlNanoHTTPRedir</a><br /> diff --git a/doc/APIchunk6.html b/doc/APIchunk6.html index ee106b4..eb77be8 100644 --- a/doc/APIchunk6.html +++ b/doc/APIchunk6.html @@ -307,6 +307,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlschemas.html#xmlSchemaNewDocParserCtxt">xmlSchemaNewDocParserCtxt</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaNewMemParserCtxt">xmlSchemaNewMemParserCtxt</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaNewParserCtxt">xmlSchemaNewParserCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> </dd><dt>Script</dt><dd><a href="html/libxml-HTMLparser.html#htmlIsScriptAttribute">htmlIsScriptAttribute</a><br /> </dd><dt>Search</dt><dd><a href="html/libxml-encoding.html#xmlFindCharEncodingHandler">xmlFindCharEncodingHandler</a><br /> <a href="html/libxml-encoding.html#xmlGetCharEncodingHandler">xmlGetCharEncodingHandler</a><br /> @@ -365,6 +366,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlsave.html#xmlSaveSetAttrEscape">xmlSaveSetAttrEscape</a><br /> <a href="html/libxml-xmlsave.html#xmlSaveSetEscape">xmlSaveSetEscape</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> <a href="html/libxml-tree.html#xmlSetBufferAllocationScheme">xmlSetBufferAllocationScheme</a><br /> <a href="html/libxml-parserInternals.html#xmlSetEntityReferenceFunc">xmlSetEntityReferenceFunc</a><br /> <a href="html/libxml-tree.html#xmlSetNsProp">xmlSetNsProp</a><br /> diff --git a/doc/APIchunk8.html b/doc/APIchunk8.html index 0c31d9d..49c2447 100644 --- a/doc/APIchunk8.html +++ b/doc/APIchunk8.html @@ -39,6 +39,9 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>Validate</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGValidateDoc">xmlRelaxNGValidateDoc</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGValidateFullElement">xmlRelaxNGValidateFullElement</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-debugXML.html#xmlShellValidate">xmlShellValidate</a><br /> <a href="html/libxml-valid.html#xmlValidateAttributeValue">xmlValidateAttributeValue</a><br /> <a href="html/libxml-valid.html#xmlValidateNameValue">xmlValidateNameValue</a><br /> @@ -142,6 +145,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-valid.html#xmlValidateOneElement">xmlValidateOneElement</a><br /> <a href="html/libxml-valid.html#xmlValidateOneNamespace">xmlValidateOneNamespace</a><br /> <a href="html/libxml-valid.html#xmlValidateRoot">xmlValidateRoot</a><br /> +</dd><dt>XML-Schema</dt><dd><a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> </dd><dt>XMLDecl</dt><dd><a href="html/libxml-parserInternals.html#xmlParseXMLDecl">xmlParseXMLDecl</a><br /> </dd><dt>XMLDecl?</dt><dd><a href="html/libxml-parser.html#xmlParseDocument">xmlParseDocument</a><br /> </dd><dt>XMLSchema</dt><dd><a href="html/libxml-xmlschemastypes.html#xmlSchemaGetPredefinedType">xmlSchemaGetPredefinedType</a><br /> @@ -249,6 +253,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>absoluteURI</dt><dd><a href="html/libxml-uri.html#xmlParseURI">xmlParseURI</a><br /> <a href="html/libxml-uri.html#xmlParseURIReference">xmlParseURIReference</a><br /> </dd><dt>abstract</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> </dd><dt>accept</dt><dd><a href="html/libxml-tree.html#xmlGetNoNsProp">xmlGetNoNsProp</a><br /> <a href="html/libxml-valid.html#xmlIsMixedElement">xmlIsMixedElement</a><br /> </dd><dt>accepted</dt><dd><a href="html/libxml-parserInternals.html#IS_BYTE_CHAR">IS_BYTE_CHAR</a><br /> @@ -281,14 +286,17 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>activated</dt><dd><a href="html/libxml-xmlmemory.html#DEBUG_MEMORY">DEBUG_MEMORY</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGSetSchema">xmlTextReaderRelaxNGSetSchema</a><br /> <a href="html/libxml-xmlreader.html#xmlTextReaderRelaxNGValidate">xmlTextReaderRelaxNGValidate</a><br /> </dd><dt>activation</dt><dd><a href="html/libxml-tree.html#xmlGetLineNo">xmlGetLineNo</a><br /> </dd><dt>acts</dt><dd><a href="html/libxml-tree.html#xmlGetProp">xmlGetProp</a><br /> -</dd><dt>actual</dt><dd><a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> +</dd><dt>actual</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> +<a href="html/libxml-xpath.html#xmlXPathFreeNodeSet">xmlXPathFreeNodeSet</a><br /> <a href="html/libxml-xpointer.html#xmlXPtrFreeLocationSet">xmlXPtrFreeLocationSet</a><br /> </dd><dt>actually</dt><dd><a href="html/libxml-tree.html#_xmlDoc">_xmlDoc</a><br /> <a href="html/libxml-parser.html#_xmlParserCtxt">_xmlParserCtxt</a><br /> @@ -359,10 +367,12 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>address</dt><dd><a href="html/libxml-xmlwriter.html#xmlNewTextWriterDoc">xmlNewTextWriterDoc</a><br /> </dd><dt>adds</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-tree.html#xmlBufferWriteCHAR">xmlBufferWriteCHAR</a><br /> @@ -643,10 +653,12 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>assumes</dt><dd><a href="html/libxml-uri.html#xmlBuildRelativeURI">xmlBuildRelativeURI</a><br /> </dd><dt>assuming</dt><dd><a href="html/libxml-tree.html#xmlSaveFileTo">xmlSaveFileTo</a><br /> <a href="html/libxml-tree.html#xmlSaveFormatFileTo">xmlSaveFormatFileTo</a><br /> +</dd><dt>assure</dt><dd><a href="html/libxml-xmlstring.html#xmlGetUTF8Char">xmlGetUTF8Char</a><br /> </dd><dt>atomic</dt><dd><a href="html/libxml-xmlmemory.html#xmlGcMemGet">xmlGcMemGet</a><br /> <a href="html/libxml-xmlmemory.html#xmlGcMemSetup">xmlGcMemSetup</a><br /> </dd><dt>attached</dt><dd><a href="html/libxml-xmlreader.html#xmlTextReaderGetRemainder">xmlTextReaderGetRemainder</a><br /> -</dd><dt>attr</dt><dd><a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> +</dd><dt>attr</dt><dd><a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> +<a href="html/libxml-tree.html#_xmlID">_xmlID</a><br /> <a href="html/libxml-tree.html#_xmlRef">_xmlRef</a><br /> </dd><dt>attribute-list</dt><dd><a href="html/libxml-parserInternals.html#xmlParseDefaultDecl">xmlParseDefaultDecl</a><br /> <a href="html/libxml-parserInternals.html#xmlParseEntityRef">xmlParseEntityRef</a><br /> diff --git a/doc/APIchunk9.html b/doc/APIchunk9.html index 81b8f4b..cf409da 100644 --- a/doc/APIchunk9.html +++ b/doc/APIchunk9.html @@ -55,6 +55,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-parserInternals.html#xmlNewInputFromFile">xmlNewInputFromFile</a><br /> <a href="html/libxml-parserInternals.html#xmlNewStringInputStream">xmlNewStringInputStream</a><br /> <a href="html/libxml-relaxng.html#xmlRelaxNGNewValidCtxt">xmlRelaxNGNewValidCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaNewValidCtxt">xmlSchemaNewValidCtxt</a><br /> <a href="html/libxml-tree.html#xmlSetCompressMode">xmlSetCompressMode</a><br /> <a href="html/libxml-tree.html#xmlSetDocCompressMode">xmlSetDocCompressMode</a><br /> <a href="html/libxml-xmlstring.html#xmlStrcat">xmlStrcat</a><br /> @@ -160,7 +161,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-SAX2.html#xmlSAXDefaultVersion">xmlSAXDefaultVersion</a><br /> <a href="html/libxml-parser.html#xmlSAXUserParseMemory">xmlSAXUserParseMemory</a><br /> </dd><dt>between</dt><dd><a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-catalog.html#xmlCatalogSetDefaultPrefer">xmlCatalogSetDefaultPrefer</a><br /> <a href="html/libxml-parserInternals.html#xmlParseQuotedString">xmlParseQuotedString</a><br /> <a href="html/libxml-xpathInternals.html#xmlXPathDifference">xmlXPathDifference</a><br /> @@ -208,6 +211,7 @@ A:link, A:visited, A:active { text-decoration: underline } </dd><dt>boundary</dt><dd><a href="html/libxml-parserInternals.html#xmlParseElementChildrenContentDecl">xmlParseElementChildrenContentDecl</a><br /> <a href="html/libxml-parserInternals.html#xmlParseElementMixedContentDecl">xmlParseElementMixedContentDecl</a><br /> </dd><dt>bracket</dt><dd><a href="html/libxml-parserInternals.html#xmlParseCharData">xmlParseCharData</a><br /> +</dd><dt>branch</dt><dd><a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> </dd><dt>break</dt><dd><a href="html/libxml-parser.html#xmlLineNumbersDefault">xmlLineNumbersDefault</a><br /> </dd><dt>breaking</dt><dd><a href="html/libxml-entities.html#xmlEncodeEntities">xmlEncodeEntities</a><br /> </dd><dt>breaks</dt><dd><a href="html/libxml-parserInternals.html#xmlCurrentChar">xmlCurrentChar</a><br /> diff --git a/doc/APIconstructors.html b/doc/APIconstructors.html index 12a16c2..35418b8 100644 --- a/doc/APIconstructors.html +++ b/doc/APIconstructors.html @@ -138,10 +138,12 @@ A:link, A:visited, A:active { text-decoration: underline } </p><h2>Type xmlAutomataStatePtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataGetInitState">xmlAutomataGetInitState</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> diff --git a/doc/APIfiles.html b/doc/APIfiles.html index 97efe03..24adee2 100644 --- a/doc/APIfiles.html +++ b/doc/APIfiles.html @@ -552,6 +552,7 @@ A:link, A:visited, A:active { text-decoration: underline } </p><h2><a name="nanohttp" id="nanohttp">Module nanohttp</a>:</h2><p><a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> @@ -938,6 +939,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> @@ -1016,6 +1018,10 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_STRING">XML_SCHEMAS_STRING</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TIME">XML_SCHEMAS_TIME</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TOKEN">XML_SCHEMAS_TOKEN</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> @@ -1025,6 +1031,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> @@ -1617,11 +1624,13 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> @@ -2005,6 +2014,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRFORMDEFAULT_VALUE">XML_SCHEMAP_ATTRFORMDEFAULT_VALUE</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRGRP_NONAME_NOREF">XML_SCHEMAP_ATTRGRP_NONAME_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTR_NONAME_NOREF">XML_SCHEMAP_ATTR_NONAME_NOREF</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT_2">XML_SCHEMAP_AU_PROPS_CORRECT_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_2">XML_SCHEMAP_A_PROPS_CORRECT_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF">XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a><br /> @@ -2044,6 +2055,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a><br /> @@ -2082,6 +2094,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MINOCCURS">XML_SCHEMAP_INVALID_MINOCCURS</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_REF_AND_SUBTYPE">XML_SCHEMAP_INVALID_REF_AND_SUBTYPE</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_WHITE_SPACE">XML_SCHEMAP_INVALID_WHITE_SPACE</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_1">XML_SCHEMAP_MG_PROPS_CORRECT_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_2">XML_SCHEMAP_MG_PROPS_CORRECT_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOATTR_NOREF">XML_SCHEMAP_NOATTR_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a><br /> @@ -2118,6 +2132,10 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_1">XML_SCHEMAP_SRC_ATTRIBUTE_3_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_2">XML_SCHEMAP_SRC_ATTRIBUTE_3_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_4">XML_SCHEMAP_SRC_ATTRIBUTE_4</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_CT_1">XML_SCHEMAP_SRC_CT_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_1">XML_SCHEMAP_SRC_ELEMENT_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_1">XML_SCHEMAP_SRC_ELEMENT_2_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_2">XML_SCHEMAP_SRC_ELEMENT_2_2</a><br /> @@ -2181,6 +2199,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_AU">XML_SCHEMAV_CVC_AU</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a><br /> @@ -2222,6 +2242,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_1">XML_SCHEMAV_CVC_TYPE_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_2">XML_SCHEMAV_CVC_TYPE_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a><br /> @@ -2520,6 +2542,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_VALUE">XML_SCHEMAS_ERR_VALUE</a><br /> <a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_WRONGELEM">XML_SCHEMAS_ERR_WRONGELEM</a><br /> <a href="html/libxml-xmlschemas.html#XML_SCHEMAS_ERR_XXX">XML_SCHEMAS_ERR_XXX</a><br /> +<a href="html/libxml-xmlschemas.html#XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchema">xmlSchema</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaDump">xmlSchemaDump</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaFree">xmlSchemaFree</a><br /> @@ -2537,10 +2560,14 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidError">xmlSchemaValidError</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a><br /> diff --git a/doc/APIfunctions.html b/doc/APIfunctions.html index 1a52429..95a0d1d 100644 --- a/doc/APIfunctions.html +++ b/doc/APIfunctions.html @@ -178,7 +178,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-valid.html#xmlAddRef">xmlAddRef</a><br /> <a href="html/libxml-tree.html#xmlAttrSerializeTxtContent">xmlAttrSerializeTxtContent</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-tree.html#xmlBufferAdd">xmlBufferAdd</a><br /> @@ -670,7 +672,9 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xlink.html#xlinkNodeDetectFunc">xlinkNodeDetectFunc</a><br /> <a href="html/libxml-xlink.html#xlinkSimpleLinkFunk">xlinkSimpleLinkFunk</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-tree.html#xmlBufferCreateStatic">xmlBufferCreateStatic</a><br /> @@ -738,6 +742,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-nanoftp.html#xmlNanoFTPUpdateURL">xmlNanoFTPUpdateURL</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPMimeType">xmlNanoHTTPMimeType</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPRead">xmlNanoHTTPRead</a><br /> @@ -861,11 +866,13 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> @@ -873,10 +880,12 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlautomata.html#xmlFreeAutomata">xmlFreeAutomata</a><br /> </p><h2>Type xmlAutomataStatePtr:</h2><p><a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataSetFinalState">xmlAutomataSetFinalState</a><br /> @@ -1377,6 +1386,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlsave.html#xmlSaveTree">xmlSaveTree</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNode">xmlSchemaValPredefTypeNode</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValPredefTypeNodeNoNorm">xmlSchemaValPredefTypeNodeNoNorm</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-tree.html#xmlSearchNs">xmlSearchNs</a><br /> <a href="html/libxml-tree.html#xmlSearchNsByHref">xmlSearchNsByHref</a><br /> <a href="html/libxml-tree.html#xmlSetListDoc">xmlSetListDoc</a><br /> @@ -1775,7 +1785,10 @@ A:link, A:visited, A:active { text-decoration: underline } </p><h2>Type xmlSchemaValidCtxtPtr:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaFreeValidCtxt">xmlSchemaFreeValidCtxt</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaGetValidErrors">xmlSchemaGetValidErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> </p><h2>Type xmlSchemaValidityErrorFunc:</h2><p><a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> diff --git a/doc/APIsymbols.html b/doc/APIsymbols.html index 813c48a..cbe4a0f 100644 --- a/doc/APIsymbols.html +++ b/doc/APIsymbols.html @@ -694,6 +694,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRFORMDEFAULT_VALUE">XML_SCHEMAP_ATTRFORMDEFAULT_VALUE</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTRGRP_NONAME_NOREF">XML_SCHEMAP_ATTRGRP_NONAME_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_ATTR_NONAME_NOREF">XML_SCHEMAP_ATTR_NONAME_NOREF</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_AU_PROPS_CORRECT_2">XML_SCHEMAP_AU_PROPS_CORRECT_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_A_PROPS_CORRECT_2">XML_SCHEMAP_A_PROPS_CORRECT_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF">XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a><br /> @@ -733,6 +735,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a><br /> @@ -771,6 +774,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_MINOCCURS">XML_SCHEMAP_INVALID_MINOCCURS</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_REF_AND_SUBTYPE">XML_SCHEMAP_INVALID_REF_AND_SUBTYPE</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_INVALID_WHITE_SPACE">XML_SCHEMAP_INVALID_WHITE_SPACE</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_1">XML_SCHEMAP_MG_PROPS_CORRECT_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_MG_PROPS_CORRECT_2">XML_SCHEMAP_MG_PROPS_CORRECT_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOATTR_NOREF">XML_SCHEMAP_NOATTR_NOREF</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a><br /> @@ -807,6 +812,10 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_1">XML_SCHEMAP_SRC_ATTRIBUTE_3_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_3_2">XML_SCHEMAP_SRC_ATTRIBUTE_3_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_4">XML_SCHEMAP_SRC_ATTRIBUTE_4</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_CT_1">XML_SCHEMAP_SRC_CT_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_1">XML_SCHEMAP_SRC_ELEMENT_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_1">XML_SCHEMAP_SRC_ELEMENT_2_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAP_SRC_ELEMENT_2_2">XML_SCHEMAP_SRC_ELEMENT_2_2</a><br /> @@ -873,6 +882,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a><br /> @@ -977,6 +987,10 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_STRING">XML_SCHEMAS_STRING</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TIME">XML_SCHEMAS_TIME</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TOKEN">XML_SCHEMAS_TOKEN</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a><br /> @@ -986,6 +1000,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a><br /> +<a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a><br /> @@ -1005,6 +1020,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_AU">XML_SCHEMAV_CVC_AU</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a><br /> @@ -1046,6 +1063,8 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_1">XML_SCHEMAV_CVC_TYPE_1</a><br /> +<a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_2">XML_SCHEMAV_CVC_TYPE_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a><br /> <a href="html/libxml-xmlerror.html#XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a><br /> @@ -1111,6 +1130,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_SIMPLE_CONTENT">XML_SCHEMA_TYPE_SIMPLE_CONTENT</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UNION">XML_SCHEMA_TYPE_UNION</a><br /> <a href="html/libxml-schemasInternals.html#XML_SCHEMA_TYPE_UR">XML_SCHEMA_TYPE_UR</a><br /> +<a href="html/libxml-xmlschemas.html#XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a><br /> <a href="html/libxml-parser.html#XML_SKIP_IDS">XML_SKIP_IDS</a><br /> <a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_BOTH">XML_SUBSTITUTE_BOTH</a><br /> <a href="html/libxml-parserInternals.html#XML_SUBSTITUTE_NONE">XML_SUBSTITUTE_NONE</a><br /> @@ -1501,11 +1521,13 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlautomata.html#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounter">xmlAutomataNewCounter</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a><br /> +<a href="html/libxml-xmlautomata.html#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewState">xmlAutomataNewState</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition">xmlAutomataNewTransition</a><br /> <a href="html/libxml-xmlautomata.html#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a><br /> @@ -1998,6 +2020,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-nanohttp.html#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPClose">xmlNanoHTTPClose</a><br /> +<a href="html/libxml-nanohttp.html#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a><br /> <a href="html/libxml-nanohttp.html#xmlNanoHTTPInit">xmlNanoHTTPInit</a><br /> @@ -2442,6 +2465,7 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a><br /> <a href="html/libxml-schemasInternals.html#xmlSchemaType">xmlSchemaType</a><br /> <a href="html/libxml-schemasInternals.html#xmlSchemaTypeLink">xmlSchemaTypeLink</a><br /> <a href="html/libxml-schemasInternals.html#xmlSchemaTypeLinkPtr">xmlSchemaTypeLinkPtr</a><br /> @@ -2453,12 +2477,15 @@ A:link, A:visited, A:active { text-decoration: underline } <a href="html/libxml-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a><br /> <a href="html/libxml-schemasInternals.html#xmlSchemaValType">xmlSchemaValType</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidError">xmlSchemaValidError</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidOption">xmlSchemaValidOption</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateFacet">xmlSchemaValidateFacet</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateLengthFacet">xmlSchemaValidateLengthFacet</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidateListSimpleTypeFacet">xmlSchemaValidateListSimpleTypeFacet</a><br /> +<a href="html/libxml-xmlschemas.html#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a><br /> <a href="html/libxml-xmlschemastypes.html#xmlSchemaValidatePredefinedType">xmlSchemaValidatePredefinedType</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidateStream">xmlSchemaValidateStream</a><br /> <a href="html/libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a><br /> diff --git a/doc/Makefile.am b/doc/Makefile.am index 01e196e..3ca1491 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -33,62 +33,61 @@ api: libxml2-api.xml libxml2-refs.xml $(APIPAGES) $(srcdir)/html/index.html $(WI web: $(PAGES) ../elfgcchack.h: $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the elfgcchack.h header" ; \ - $(bindir)/xsltproc --nonet $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml > elfgcchack.h ; \ + $(XSLTPROC) --nonet $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml > elfgcchack.h ; \ if [ "`diff -q elfgcchack.h ../elfgcchack.h`" ] ; then \ echo "updating ../elfgcchack.h"; \ cp elfgcchack.h ../elfgcchack.h; \ fi ; rm -f elfgcchack.h ; fi ); $(PAGES): xml.html site.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML Web pages from xml.html" ; \ - $(bindir)/xsltproc --nonet --html $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/xml.html > index.html ; fi ); - -@(if [ -x $(bindir)/xmllint ] ; then \ + $(XSLTPROC) --nonet --html $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/xml.html > index.html ; fi ); + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the HTML Web pages" ; \ - $(bindir)/xmllint --nonet --valid --noout $(PAGES) ; fi ); + $(XMLLINT) --nonet --valid --noout $(PAGES) ; fi ); $(top_srcdir)/NEWS: $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html - -@(if [ -x $(bindir)/xsltproc ] ; then \ - $(bindir)/xsltproc --nonet $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html > $(top_srcdir)/NEWS ; fi ); + -@(if [ -x $(XSLTPROC) ] ; then \ + $(XSLTPROC) --nonet $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html > $(top_srcdir)/NEWS ; fi ); libxml2.xsa: $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the NEWS file" ; \ - $(bindir)/xsltproc --nonet $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html > libxml2.xsa ; fi ); + $(XSLTPROC) --nonet $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html > libxml2.xsa ; fi ); $(APIPAGES): libxml2-api.xml libxml2-refs.xml $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/api.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML API pages from libxml2-refs.xml" ; \ - $(bindir)/xsltproc --nonet --html $(top_srcdir)/doc/api.xsl \ + $(XSLTPROC) --nonet --html $(top_srcdir)/doc/api.xsl \ $(top_srcdir)/doc/xml.html ; fi ); - -@(if [ -x $(bindir)/xmllint ] ; then \ + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the HTML API pages" ; \ - $(bindir)/xmllint --nonet --valid --noout API*.html ; fi ); + $(XMLLINT) --nonet --valid --noout API*.html ; fi ); $(srcdir)/html/index.html: libxml2-api.xml $(srcdir)/newapi.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML pages from the XML API" ; \ - $(bindir)/xsltproc \ - --nonet $(srcdir)/newapi.xsl libxml2-api.xml ; fi ) - -@(if [ -x $(bindir)/xmllint ] ; then \ + $(XSLTPROC) --nonet $(srcdir)/newapi.xsl libxml2-api.xml ; fi ) + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the resulting XHTML pages" ; \ - $(bindir)/xmllint --nonet --valid --noout html/*.html ; fi ); + $(XMLLINT) --nonet --valid --noout html/*.html ; fi ); $(WIN32_DIR)/libxml2.def.src: libxml2-api.xml - -@(if [ -x $(bindir)/xsltproc ] ; then \ - $(bindir)/xsltproc -o $(WIN32_DIR)/libxml2.def.src \ + -@(if [ -x $(XSLTPROC) ] ; then \ + $(XSLTPROC) -o $(WIN32_DIR)/libxml2.def.src \ --nonet $(WIN32_DIR)/defgen.xsl libxml2-api.xml ; fi ) libxml2-api.xml libxml2-refs.xml: apibuild.py ../include/libxml/*.h ../*.c -(./apibuild.py) xmllint.1: xmllint.xml - -@(xsltproc --nonet xmllint.xml) + -@($(XSLTPROC) --nonet xmllint.xml) xmlcatalog.1: xmlcatalog_man.xml - -@(xsltproc --nonet xmlcatalog_man.xml) + -@($(XSLTPROC) --nonet xmlcatalog_man.xml) clean-local: rm -f *~ *.bak *.hierarchy *.signals *-unused.txt diff --git a/doc/Makefile.in b/doc/Makefile.in index df801c3..e26d967 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -204,6 +204,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -211,6 +212,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ @@ -634,62 +636,61 @@ api: libxml2-api.xml libxml2-refs.xml $(APIPAGES) $(srcdir)/html/index.html $(WI web: $(PAGES) ../elfgcchack.h: $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the elfgcchack.h header" ; \ - $(bindir)/xsltproc --nonet $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml > elfgcchack.h ; \ + $(XSLTPROC) --nonet $(srcdir)/elfgcchack.xsl $(srcdir)/libxml2-api.xml > elfgcchack.h ; \ if [ "`diff -q elfgcchack.h ../elfgcchack.h`" ] ; then \ echo "updating ../elfgcchack.h"; \ cp elfgcchack.h ../elfgcchack.h; \ fi ; rm -f elfgcchack.h ; fi ); $(PAGES): xml.html site.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML Web pages from xml.html" ; \ - $(bindir)/xsltproc --nonet --html $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/xml.html > index.html ; fi ); - -@(if [ -x $(bindir)/xmllint ] ; then \ + $(XSLTPROC) --nonet --html $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/xml.html > index.html ; fi ); + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the HTML Web pages" ; \ - $(bindir)/xmllint --nonet --valid --noout $(PAGES) ; fi ); + $(XMLLINT) --nonet --valid --noout $(PAGES) ; fi ); $(top_srcdir)/NEWS: $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html - -@(if [ -x $(bindir)/xsltproc ] ; then \ - $(bindir)/xsltproc --nonet $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html > $(top_srcdir)/NEWS ; fi ); + -@(if [ -x $(XSLTPROC) ] ; then \ + $(XSLTPROC) --nonet $(top_srcdir)/doc/news.xsl $(top_srcdir)/doc/news.html > $(top_srcdir)/NEWS ; fi ); libxml2.xsa: $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the NEWS file" ; \ - $(bindir)/xsltproc --nonet $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html > libxml2.xsa ; fi ); + $(XSLTPROC) --nonet $(top_srcdir)/doc/xsa.xsl $(top_srcdir)/doc/news.html > libxml2.xsa ; fi ); $(APIPAGES): libxml2-api.xml libxml2-refs.xml $(top_srcdir)/doc/site.xsl $(top_srcdir)/doc/api.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML API pages from libxml2-refs.xml" ; \ - $(bindir)/xsltproc --nonet --html $(top_srcdir)/doc/api.xsl \ + $(XSLTPROC) --nonet --html $(top_srcdir)/doc/api.xsl \ $(top_srcdir)/doc/xml.html ; fi ); - -@(if [ -x $(bindir)/xmllint ] ; then \ + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the HTML API pages" ; \ - $(bindir)/xmllint --nonet --valid --noout API*.html ; fi ); + $(XMLLINT) --nonet --valid --noout API*.html ; fi ); $(srcdir)/html/index.html: libxml2-api.xml $(srcdir)/newapi.xsl - -@(if [ -x $(bindir)/xsltproc ] ; then \ + -@(if [ -x $(XSLTPROC) ] ; then \ echo "Rebuilding the HTML pages from the XML API" ; \ - $(bindir)/xsltproc \ - --nonet $(srcdir)/newapi.xsl libxml2-api.xml ; fi ) - -@(if [ -x $(bindir)/xmllint ] ; then \ + $(XSLTPROC) --nonet $(srcdir)/newapi.xsl libxml2-api.xml ; fi ) + -@(if [ -x $(XMLLINT) ] ; then \ echo "Validating the resulting XHTML pages" ; \ - $(bindir)/xmllint --nonet --valid --noout html/*.html ; fi ); + $(XMLLINT) --nonet --valid --noout html/*.html ; fi ); $(WIN32_DIR)/libxml2.def.src: libxml2-api.xml - -@(if [ -x $(bindir)/xsltproc ] ; then \ - $(bindir)/xsltproc -o $(WIN32_DIR)/libxml2.def.src \ + -@(if [ -x $(XSLTPROC) ] ; then \ + $(XSLTPROC) -o $(WIN32_DIR)/libxml2.def.src \ --nonet $(WIN32_DIR)/defgen.xsl libxml2-api.xml ; fi ) libxml2-api.xml libxml2-refs.xml: apibuild.py ../include/libxml/*.h ../*.c -(./apibuild.py) xmllint.1: xmllint.xml - -@(xsltproc --nonet xmllint.xml) + -@($(XSLTPROC) --nonet xmllint.xml) xmlcatalog.1: xmlcatalog_man.xml - -@(xsltproc --nonet xmlcatalog_man.xml) + -@($(XSLTPROC) --nonet xmlcatalog_man.xml) clean-local: rm -f *~ *.bak *.hierarchy *.signals *-unused.txt diff --git a/doc/downloads.html b/doc/downloads.html index 8344caf..c7814d9 100644 --- a/doc/downloads.html +++ b/doc/downloads.html @@ -8,7 +8,7 @@ H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } </style><title>Downloads</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1>The XML C parser and toolkit of Gnome</h1><h2>Downloads</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Main Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a href="index.html">Home</a></li><li><a href="intro.html">Introduction</a></li><li><a href="FAQ.html">FAQ</a></li><li><a href="docs.html" style="font-weight:bold">Developer Menu</a></li><li><a href="bugs.html">Reporting bugs and getting help</a></li><li><a href="help.html">How to help</a></li><li><a href="downloads.html">Downloads</a></li><li><a href="news.html">News</a></li><li><a href="XMLinfo.html">XML</a></li><li><a href="XSLT.html">XSLT</a></li><li><a href="xmldtd.html">Validation & DTDs</a></li><li><a href="encoding.html">Encodings support</a></li><li><a href="catalog.html">Catalog support</a></li><li><a href="namespaces.html">Namespaces</a></li><li><a href="contribs.html">Contributions</a></li><li><a href="examples/index.html" style="font-weight:bold">Code Examples</a></li><li><a href="html/index.html" style="font-weight:bold">API Menu</a></li><li><a href="guidelines.html">XML Guidelines</a></li><li><a href="ChangeLog.html">ChangeLog</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><p>The latest versions of libxml2 can be found on the <a href="ftp://xmlsoft.org/">xmlsoft.org</a> server ( <a href="http://xmlsoft.org/sources/">HTTP</a>, <a href="ftp://xmlsoft.org/">FTP</a> and rsync are available), there is also -mirrors (<a href="ftp://speakeasy.rpmfind.net/pub/libxml/">Seattle</a>, <a href="ftp://fr.rpmfind.net/pub/libxml/">France</a>) or on the <a href="ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html">Gnome FTP server</a> as <a href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">source archive</a> +mirrors (<a href="ftp://ftp.planetmirror.com/pub/xmlsoft/">Australia</a>( <a href="http://xmlsoft.planetmirror.com/">Web</a>), <a href="ftp://fr.rpmfind.net/pub/libxml/">France</a>) or on the <a href="ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html">Gnome FTP server</a> as <a href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">source archive</a> , Antonin Sprinzl also provide <a href="ftp://gd.tuwien.ac.at/pub/libxml/">a mirror in Austria</a>. (NOTE that you need both the <a href="http://rpmfind.net/linux/RPM/libxml2.html">libxml(2)</a> and <a href="http://rpmfind.net/linux/RPM/libxml2-devel.html">libxml(2)-devel</a> packages installed to compile applications using libxml.)</p><p>You can find all the history of libxml(2) and libxslt releases in the <a href="http://xmlsoft.org/sources/old/">old</a> directory. The precompiled diff --git a/doc/examples/Makefile.in b/doc/examples/Makefile.in index c0c7e0b..216122d 100644 --- a/doc/examples/Makefile.in +++ b/doc/examples/Makefile.in @@ -258,6 +258,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -265,6 +266,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ diff --git a/doc/html/libxml-nanohttp.html b/doc/html/libxml-nanohttp.html index 1b5f919..f3e4777 100644 --- a/doc/html/libxml-nanohttp.html +++ b/doc/html/libxml-nanohttp.html @@ -13,6 +13,7 @@ A:link, A:visited, A:active { text-decoration: underline } </style><title>Module nanohttp from libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="../epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="../gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="../w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="../redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="../Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1></h1><h2>Module nanohttp from libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="../search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a style="font-weight:bold" href="../index.html">Main Menu</a></li><li><a style="font-weight:bold" href="../docs.html">Developer Menu</a></li><li><a style="font-weight:bold" href="../examples/index.html">Code Examples</a></li><li><a style="font-weight:bold" href="index.html">API Menu</a></li><li><a href="libxml-parser.html">Parser API</a></li><li><a href="libxml-tree.html">Tree API</a></li><li><a href="libxml-xmlreader.html">Reader API</a></li><li><a href="../guidelines.html">XML Guidelines</a></li><li><a href="../ChangeLog.html">ChangeLog</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="../APIchunk0.html">Alphabetic</a></li><li><a href="../APIconstructors.html">Constructors</a></li><li><a href="../APIfunctions.html">Functions/Types</a></li><li><a href="../APIfiles.html">Modules</a></li><li><a href="../APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"><td><a accesskey="p" href="libxml-nanoftp.html"><img src="left.png" width="24" height="24" border="0" alt="Prev" /></a></td><th align="left"><a href="libxml-nanoftp.html">nanoftp</a></th><td><a accesskey="u" href="index.html"><img src="up.png" width="24" height="24" border="0" alt="Up" /></a></td><th align="left"><a href="index.html">API documentation</a></th><td><a accesskey="h" href="../index.html"><img src="home.png" width="24" height="24" border="0" alt="Home" /></a></td><th align="center"><a href="../index.html">The XML C parser and toolkit of Gnome</a></th><th align="right"><a href="libxml-parser.html">parser</a></th><td><a accesskey="n" href="libxml-parser.html"><img src="right.png" width="24" height="24" border="0" alt="Next" /></a></td></tr></table><p>minimal HTTP implementation allowing to fetch resources like external subset. </p><h2>Table of Contents</h2><pre class="programlisting">const char * <a href="#xmlNanoHTTPAuthHeader">xmlNanoHTTPAuthHeader</a> (void * ctx)</pre> <pre class="programlisting">void <a href="#xmlNanoHTTPCleanup">xmlNanoHTTPCleanup</a> (void)</pre> <pre class="programlisting">void <a href="#xmlNanoHTTPClose">xmlNanoHTTPClose</a> (void * ctx)</pre> +<pre class="programlisting">int <a href="#xmlNanoHTTPContentLength">xmlNanoHTTPContentLength</a> (void * ctx)</pre> <pre class="programlisting">const char * <a href="#xmlNanoHTTPEncoding">xmlNanoHTTPEncoding</a> (void * ctx)</pre> <pre class="programlisting">int <a href="#xmlNanoHTTPFetch">xmlNanoHTTPFetch</a> (const char * URL, <br /> const char * filename, <br /> char ** contentType)</pre> <pre class="programlisting">void <a href="#xmlNanoHTTPInit">xmlNanoHTTPInit</a> (void)</pre> @@ -33,7 +34,9 @@ A:link, A:visited, A:active { text-decoration: underline } </pre><p>Cleanup the HTTP protocol layer.</p> <h3><a name="xmlNanoHTTPClose" id="xmlNanoHTTPClose"></a>Function: xmlNanoHTTPClose</h3><pre class="programlisting">void xmlNanoHTTPClose (void * ctx)<br /> </pre><p>This function closes an HTTP context, it ends up the connection and free all data related to it.</p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr></tbody></table></div><h3><a name="xmlNanoHTTPEncoding" id="xmlNanoHTTPEncoding"></a>Function: xmlNanoHTTPEncoding</h3><pre class="programlisting">const char * xmlNanoHTTPEncoding (void * ctx)<br /> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr></tbody></table></div><h3><a name="xmlNanoHTTPContentLength" id="xmlNanoHTTPContentLength"></a>Function: xmlNanoHTTPContentLength</h3><pre class="programlisting">int xmlNanoHTTPContentLength (void * ctx)<br /> +</pre><p>Provides the specified content length from the HTTP header.</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified content length from the HTTP header. Note that a value of -1 indicates that the content length element was not included in the response header.</td></tr></tbody></table></div><h3><a name="xmlNanoHTTPEncoding" id="xmlNanoHTTPEncoding"></a>Function: xmlNanoHTTPEncoding</h3><pre class="programlisting">const char * xmlNanoHTTPEncoding (void * ctx)<br /> </pre><p>Provides the specified encoding if specified in the HTTP headers.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the HTTP context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the specified encoding or NULL if not available</td></tr></tbody></table></div><h3><a name="xmlNanoHTTPFetch" id="xmlNanoHTTPFetch"></a>Function: xmlNanoHTTPFetch</h3><pre class="programlisting">int xmlNanoHTTPFetch (const char * URL, <br /> const char * filename, <br /> char ** contentType)<br /> </pre><p>This function try to fetch the indicated resource via HTTP GET and save it's content in the file.</p> diff --git a/doc/html/libxml-parserInternals.html b/doc/html/libxml-parserInternals.html index 8ba603d..6defbe9 100644 --- a/doc/html/libxml-parserInternals.html +++ b/doc/html/libxml-parserInternals.html @@ -248,11 +248,11 @@ void xmlEntityReferenceFunc (<a href="libxml-tree.html#xmlEntityPtr">xmlEntityP <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div><h3><a name="xmlParseMisc" id="xmlParseMisc"></a>Function: xmlParseMisc</h3><pre class="programlisting">void xmlParseMisc (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> </pre><p>parse an XML Misc* optional field. [27] Misc ::= Comment | PI | S</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div><h3><a name="xmlParseName" id="xmlParseName"></a>Function: xmlParseName</h3><pre class="programlisting">const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * xmlParseName (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> -</pre><p>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (S Name)*</p> +</pre><p>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (#x20 Name)*</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the Name parsed or NULL</td></tr></tbody></table></div><h3><a name="xmlParseNamespace" id="xmlParseNamespace"></a>Function: xmlParseNamespace</h3><pre class="programlisting">void xmlParseNamespace (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> </pre><p>xmlParseNamespace: parse specific PI '<?namespace ...' constructs. This is what the older xml-name Working Draft specified, a bunch of other stuff may still rely on it, so support is still here as if it was declared on the root of the Tree:-( TODO: remove from library To be removed at next drop of binary compatibility</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div><h3><a name="xmlParseNmtoken" id="xmlParseNmtoken"></a>Function: xmlParseNmtoken</h3><pre class="programlisting"><a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * xmlParseNmtoken (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> -</pre><p>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (S Nmtoken)*</p> +</pre><p>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the Nmtoken parsed or NULL</td></tr></tbody></table></div><h3><a name="xmlParseNotationDecl" id="xmlParseNotationDecl"></a>Function: xmlParseNotationDecl</h3><pre class="programlisting">void xmlParseNotationDecl (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> </pre><p>parse a notation declaration [82] NotationDecl ::= '<!NOTATION' S Name S (ExternalID | PublicID) S? '>' Hence there is actually 3 choices: 'PUBLIC' S PubidLiteral 'PUBLIC' S PubidLiteral S SystemLiteral and 'SYSTEM' S SystemLiteral See the NOTE on xmlParseExternalID().</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>an XML parser context</td></tr></tbody></table></div><h3><a name="xmlParseNotationType" id="xmlParseNotationType"></a>Function: xmlParseNotationType</h3><pre class="programlisting"><a href="libxml-tree.html#xmlEnumerationPtr">xmlEnumerationPtr</a> xmlParseNotationType (<a href="libxml-tree.html#xmlParserCtxtPtr">xmlParserCtxtPtr</a> ctxt)<br /> diff --git a/doc/html/libxml-schemasInternals.html b/doc/html/libxml-schemasInternals.html index 8273537..81f2112 100644 --- a/doc/html/libxml-schemasInternals.html +++ b/doc/html/libxml-schemasInternals.html @@ -10,7 +10,7 @@ A:link, A:visited, A:active { text-decoration: underline } </style><style type="text/css"> div.deprecated pre.programlisting {border-style: double;border-color:red} pre.programlisting {border-style: double;background: #EECFA1} - </style><title>Module schemasInternals from libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="../epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="../gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="../w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="../redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="../Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1></h1><h2>Module schemasInternals from libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="../search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a style="font-weight:bold" href="../index.html">Main Menu</a></li><li><a style="font-weight:bold" href="../docs.html">Developer Menu</a></li><li><a style="font-weight:bold" href="../examples/index.html">Code Examples</a></li><li><a style="font-weight:bold" href="index.html">API Menu</a></li><li><a href="libxml-parser.html">Parser API</a></li><li><a href="libxml-tree.html">Tree API</a></li><li><a href="libxml-xmlreader.html">Reader API</a></li><li><a href="../guidelines.html">XML Guidelines</a></li><li><a href="../ChangeLog.html">ChangeLog</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="../APIchunk0.html">Alphabetic</a></li><li><a href="../APIconstructors.html">Constructors</a></li><li><a href="../APIfunctions.html">Functions/Types</a></li><li><a href="../APIfiles.html">Modules</a></li><li><a href="../APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"><td><a accesskey="p" href="libxml-relaxng.html"><img src="left.png" width="24" height="24" border="0" alt="Prev" /></a></td><th align="left"><a href="libxml-relaxng.html">relaxng</a></th><td><a accesskey="u" href="index.html"><img src="up.png" width="24" height="24" border="0" alt="Up" /></a></td><th align="left"><a href="index.html">API documentation</a></th><td><a accesskey="h" href="../index.html"><img src="home.png" width="24" height="24" border="0" alt="Home" /></a></td><th align="center"><a href="../index.html">The XML C parser and toolkit of Gnome</a></th><th align="right"><a href="libxml-threads.html">threads</a></th><td><a accesskey="n" href="libxml-threads.html"><img src="right.png" width="24" height="24" border="0" alt="Next" /></a></td></tr></table><p>internal interfaces for the XML Schemas handling and schema validity checking </p><h2>Table of Contents</h2><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a></pre><pre class="programlisting">Structure <a href="#xmlSchemaAnnot">xmlSchemaAnnot</a><br />struct _xmlSchemaAnnot + </style><title>Module schemasInternals from libxml2</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><table border="0" width="100%" cellpadding="5" cellspacing="0" align="center"><tr><td width="120"><a href="http://swpat.ffii.org/"><img src="../epatents.png" alt="Action against software patents" /></a></td><td width="180"><a href="http://www.gnome.org/"><img src="../gnome2.png" alt="Gnome2 Logo" /></a><a href="http://www.w3.org/Status"><img src="../w3c.png" alt="W3C Logo" /></a><a href="http://www.redhat.com/"><img src="../redhat.gif" alt="Red Hat Logo" /></a><div align="left"><a href="http://xmlsoft.org/"><img src="../Libxml2-Logo-180x168.gif" alt="Made with Libxml2 Logo" /></a></div></td><td><table border="0" width="90%" cellpadding="2" cellspacing="0" align="center" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3" bgcolor="#fffacd"><tr><td align="center"><h1></h1><h2>Module schemasInternals from libxml2</h2></td></tr></table></td></tr></table></td></tr></table><table border="0" cellpadding="4" cellspacing="0" width="100%" align="center"><tr><td bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="2" width="100%"><tr><td valign="top" width="200" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Menu</b></center></td></tr><tr><td bgcolor="#fffacd"><form action="../search.php" enctype="application/x-www-form-urlencoded" method="get"><input name="query" type="text" size="20" value="" /><input name="submit" type="submit" value="Search ..." /></form><ul><li><a style="font-weight:bold" href="../index.html">Main Menu</a></li><li><a style="font-weight:bold" href="../docs.html">Developer Menu</a></li><li><a style="font-weight:bold" href="../examples/index.html">Code Examples</a></li><li><a style="font-weight:bold" href="index.html">API Menu</a></li><li><a href="libxml-parser.html">Parser API</a></li><li><a href="libxml-tree.html">Tree API</a></li><li><a href="libxml-xmlreader.html">Reader API</a></li><li><a href="../guidelines.html">XML Guidelines</a></li><li><a href="../ChangeLog.html">ChangeLog</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>API Indexes</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="../APIchunk0.html">Alphabetic</a></li><li><a href="../APIconstructors.html">Constructors</a></li><li><a href="../APIfunctions.html">Functions/Types</a></li><li><a href="../APIfiles.html">Modules</a></li><li><a href="../APIsymbols.html">Symbols</a></li></ul></td></tr></table><table width="100%" border="0" cellspacing="1" cellpadding="3"><tr><td colspan="1" bgcolor="#eecfa1" align="center"><center><b>Related links</b></center></td></tr><tr><td bgcolor="#fffacd"><ul><li><a href="http://mail.gnome.org/archives/xml/">Mail archive</a></li><li><a href="http://xmlsoft.org/XSLT/">XSLT libxslt</a></li><li><a href="http://phd.cs.unibo.it/gdome2/">DOM gdome2</a></li><li><a href="http://www.aleksey.com/xmlsec/">XML-DSig xmlsec</a></li><li><a href="ftp://xmlsoft.org/">FTP</a></li><li><a href="http://www.zlatkovic.com/projects/libxml/">Windows binaries</a></li><li><a href="http://garypennington.net/libxml2/">Solaris binaries</a></li><li><a href="http://www.zveno.com/open_source/libxml2xslt.html">MacOsX binaries</a></li><li><a href="http://sourceforge.net/projects/libxml2-pas/">Pascal bindings</a></li><li><a href="http://bugzilla.gnome.org/buglist.cgi?product=libxml2">Bug Tracker</a></li></ul></td></tr></table></td></tr></table></td><td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"><table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"><td><a accesskey="p" href="libxml-relaxng.html"><img src="left.png" width="24" height="24" border="0" alt="Prev" /></a></td><th align="left"><a href="libxml-relaxng.html">relaxng</a></th><td><a accesskey="u" href="index.html"><img src="up.png" width="24" height="24" border="0" alt="Up" /></a></td><th align="left"><a href="index.html">API documentation</a></th><td><a accesskey="h" href="../index.html"><img src="home.png" width="24" height="24" border="0" alt="Home" /></a></td><th align="center"><a href="../index.html">The XML C parser and toolkit of Gnome</a></th><th align="right"><a href="libxml-threads.html">threads</a></th><td><a accesskey="n" href="libxml-threads.html"><img src="right.png" width="24" height="24" border="0" alt="Next" /></a></td></tr></table><p>internal interfaces for the XML Schemas handling and schema validity checking </p><h2>Table of Contents</h2><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_LAX">XML_SCHEMAS_ANYATTR_LAX</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_SKIP">XML_SCHEMAS_ANYATTR_SKIP</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANYATTR_STRICT">XML_SCHEMAS_ANYATTR_STRICT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_LAX">XML_SCHEMAS_ANY_LAX</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_SKIP">XML_SCHEMAS_ANY_SKIP</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ANY_STRICT">XML_SCHEMAS_ANY_STRICT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_GLOBAL">XML_SCHEMAS_ATTRGROUP_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_MARKED">XML_SCHEMAS_ATTRGROUP_MARKED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED">XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_FIXED">XML_SCHEMAS_ATTR_FIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_GLOBAL">XML_SCHEMAS_ATTR_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_INTERNAL_RESOLVED">XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_NSDEFAULT">XML_SCHEMAS_ATTR_NSDEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_OPTIONAL">XML_SCHEMAS_ATTR_USE_OPTIONAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_PROHIBITED">XML_SCHEMAS_ATTR_USE_PROHIBITED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ATTR_USE_REQUIRED">XML_SCHEMAS_ATTR_USE_REQUIRED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION">XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION">XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION">XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_ABSTRACT">XML_SCHEMAS_ELEM_ABSTRACT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_ABSENT">XML_SCHEMAS_ELEM_BLOCK_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_EXTENSION">XML_SCHEMAS_ELEM_BLOCK_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_RESTRICTION">XML_SCHEMAS_ELEM_BLOCK_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION">XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_CIRCULAR">XML_SCHEMAS_ELEM_CIRCULAR</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_DEFAULT">XML_SCHEMAS_ELEM_DEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_ABSENT">XML_SCHEMAS_ELEM_FINAL_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_EXTENSION">XML_SCHEMAS_ELEM_FINAL_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FINAL_RESTRICTION">XML_SCHEMAS_ELEM_FINAL_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_FIXED">XML_SCHEMAS_ELEM_FIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_GLOBAL">XML_SCHEMAS_ELEM_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_INTERNAL_RESOLVED">XML_SCHEMAS_ELEM_INTERNAL_RESOLVED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NILLABLE">XML_SCHEMAS_ELEM_NILLABLE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_NSDEFAULT">XML_SCHEMAS_ELEM_NSDEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_REF">XML_SCHEMAS_ELEM_REF</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_ELEM_TOPLEVEL">XML_SCHEMAS_ELEM_TOPLEVEL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_COLLAPSE">XML_SCHEMAS_FACET_COLLAPSE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_PRESERVE">XML_SCHEMAS_FACET_PRESERVE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_REPLACE">XML_SCHEMAS_FACET_REPLACE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FACET_UNKNOWN">XML_SCHEMAS_FACET_UNKNOWN</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_EXTENSION">XML_SCHEMAS_FINAL_DEFAULT_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_LIST">XML_SCHEMAS_FINAL_DEFAULT_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION">XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_FINAL_DEFAULT_UNION">XML_SCHEMAS_FINAL_DEFAULT_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_INCLUDING_CONVERT_NS">XML_SCHEMAS_INCLUDING_CONVERT_NS</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ATTR">XML_SCHEMAS_QUALIF_ATTR</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_QUALIF_ELEM">XML_SCHEMAS_QUALIF_ELEM</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_ABSTRACT">XML_SCHEMAS_TYPE_ABSTRACT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_DEFAULT">XML_SCHEMAS_TYPE_BLOCK_DEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_EXTENSION">XML_SCHEMAS_TYPE_BLOCK_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BLOCK_RESTRICTION">XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE">XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION">XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_DEFAULT">XML_SCHEMAS_TYPE_FINAL_DEFAULT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_EXTENSION">XML_SCHEMAS_TYPE_FINAL_EXTENSION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_LIST">XML_SCHEMAS_TYPE_FINAL_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_RESTRICTION">XML_SCHEMAS_TYPE_FINAL_RESTRICTION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_FINAL_UNION">XML_SCHEMAS_TYPE_FINAL_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_GLOBAL">XML_SCHEMAS_TYPE_GLOBAL</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MARKED">XML_SCHEMAS_TYPE_MARKED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_MIXED">XML_SCHEMAS_TYPE_MIXED</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD">XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ABSENT">XML_SCHEMAS_TYPE_VARIETY_ABSENT</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_ATOMIC">XML_SCHEMAS_TYPE_VARIETY_ATOMIC</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_LIST">XML_SCHEMAS_TYPE_VARIETY_LIST</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_TYPE_VARIETY_UNION">XML_SCHEMAS_TYPE_VARIETY_UNION</a></pre><pre class="programlisting">#define <a href="#XML_SCHEMAS_WILDCARD_COMPLETE">XML_SCHEMAS_WILDCARD_COMPLETE</a></pre><pre class="programlisting">Structure <a href="#xmlSchemaAnnot">xmlSchemaAnnot</a><br />struct _xmlSchemaAnnot </pre><pre class="programlisting">Typedef <a href="libxml-schemasInternals.html#xmlSchemaAnnot">xmlSchemaAnnot</a> * <a name="xmlSchemaAnnotPtr" id="xmlSchemaAnnotPtr">xmlSchemaAnnotPtr</a> </pre><pre class="programlisting">Structure <a href="#xmlSchemaAttribute">xmlSchemaAttribute</a><br />struct _xmlSchemaAttribute </pre><pre class="programlisting">Structure <a href="#xmlSchemaAttributeGroup">xmlSchemaAttributeGroup</a><br />struct _xmlSchemaAttributeGroup @@ -50,10 +50,11 @@ The content of this structure is not made public by the API. <h3><a name="XML_SCHEMAS_ANY_SKIP" id="XML_SCHEMAS_ANY_SKIP"></a>Macro: XML_SCHEMAS_ANY_SKIP</h3><pre>#define XML_SCHEMAS_ANY_SKIP</pre><p>Skip unknown <a href="libxml-SAX.html#attribute">attribute</a> from validation</p> <h3><a name="XML_SCHEMAS_ANY_STRICT" id="XML_SCHEMAS_ANY_STRICT"></a>Macro: XML_SCHEMAS_ANY_STRICT</h3><pre>#define XML_SCHEMAS_ANY_STRICT</pre><p>Used by wildcards. Apply strict validation rules</p> <h3><a name="XML_SCHEMAS_ATTRGROUP_GLOBAL" id="XML_SCHEMAS_ATTRGROUP_GLOBAL"></a>Macro: XML_SCHEMAS_ATTRGROUP_GLOBAL</h3><pre>#define XML_SCHEMAS_ATTRGROUP_GLOBAL</pre><p>The <a href="libxml-SAX.html#attribute">attribute</a> wildcard has been already builded.</p> +<h3><a name="XML_SCHEMAS_ATTRGROUP_MARKED" id="XML_SCHEMAS_ATTRGROUP_MARKED"></a>Macro: XML_SCHEMAS_ATTRGROUP_MARKED</h3><pre>#define XML_SCHEMAS_ATTRGROUP_MARKED</pre><p>Marks the attr group as marked; used for circular checks.</p> <h3><a name="XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED" id="XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED"></a>Macro: XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</h3><pre>#define XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED</pre><p>The <a href="libxml-SAX.html#attribute">attribute</a> wildcard has been already builded.</p> <h3><a name="XML_SCHEMAS_ATTR_FIXED" id="XML_SCHEMAS_ATTR_FIXED"></a>Macro: XML_SCHEMAS_ATTR_FIXED</h3><pre>#define XML_SCHEMAS_ATTR_FIXED</pre><p>the <a href="libxml-SAX.html#attribute">attribute</a> has a fixed value</p> <h3><a name="XML_SCHEMAS_ATTR_GLOBAL" id="XML_SCHEMAS_ATTR_GLOBAL"></a>Macro: XML_SCHEMAS_ATTR_GLOBAL</h3><pre>#define XML_SCHEMAS_ATTR_GLOBAL</pre><p></p> -<h3><a name="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED" id="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED"></a>Macro: XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</h3><pre>#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</pre><p></p> +<h3><a name="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED" id="XML_SCHEMAS_ATTR_INTERNAL_RESOLVED"></a>Macro: XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</h3><pre>#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED</pre><p>this is set when the "type" and "ref" references have been resolved.</p> <h3><a name="XML_SCHEMAS_ATTR_NSDEFAULT" id="XML_SCHEMAS_ATTR_NSDEFAULT"></a>Macro: XML_SCHEMAS_ATTR_NSDEFAULT</h3><pre>#define XML_SCHEMAS_ATTR_NSDEFAULT</pre><p>allow elements in no namespace</p> <h3><a name="XML_SCHEMAS_ATTR_USE_OPTIONAL" id="XML_SCHEMAS_ATTR_USE_OPTIONAL"></a>Macro: XML_SCHEMAS_ATTR_USE_OPTIONAL</h3><pre>#define XML_SCHEMAS_ATTR_USE_OPTIONAL</pre><p>The <a href="libxml-SAX.html#attribute">attribute</a> is optional.</p> <h3><a name="XML_SCHEMAS_ATTR_USE_PROHIBITED" id="XML_SCHEMAS_ATTR_USE_PROHIBITED"></a>Macro: XML_SCHEMAS_ATTR_USE_PROHIBITED</h3><pre>#define XML_SCHEMAS_ATTR_USE_PROHIBITED</pre><p>Used by wildcards. The <a href="libxml-SAX.html#attribute">attribute</a> is prohibited.</p> @@ -89,6 +90,10 @@ The content of this structure is not made public by the API. <h3><a name="XML_SCHEMAS_INCLUDING_CONVERT_NS" id="XML_SCHEMAS_INCLUDING_CONVERT_NS"></a>Macro: XML_SCHEMAS_INCLUDING_CONVERT_NS</h3><pre>#define XML_SCHEMAS_INCLUDING_CONVERT_NS</pre><p>the schema is currently including an other schema with no target namespace.</p> <h3><a name="XML_SCHEMAS_QUALIF_ATTR" id="XML_SCHEMAS_QUALIF_ATTR"></a>Macro: XML_SCHEMAS_QUALIF_ATTR</h3><pre>#define XML_SCHEMAS_QUALIF_ATTR</pre><p>the schema requires qualified attributes</p> <h3><a name="XML_SCHEMAS_QUALIF_ELEM" id="XML_SCHEMAS_QUALIF_ELEM"></a>Macro: XML_SCHEMAS_QUALIF_ELEM</h3><pre>#define XML_SCHEMAS_QUALIF_ELEM</pre><p>the schema requires qualified elements</p> +<h3><a name="XML_SCHEMAS_TYPE_ABSTRACT" id="XML_SCHEMAS_TYPE_ABSTRACT"></a>Macro: XML_SCHEMAS_TYPE_ABSTRACT</h3><pre>#define XML_SCHEMAS_TYPE_ABSTRACT</pre><p>the simple/complexType is abstract.</p> +<h3><a name="XML_SCHEMAS_TYPE_BLOCK_DEFAULT" id="XML_SCHEMAS_TYPE_BLOCK_DEFAULT"></a>Macro: XML_SCHEMAS_TYPE_BLOCK_DEFAULT</h3><pre>#define XML_SCHEMAS_TYPE_BLOCK_DEFAULT</pre><p>the complexType did not specify 'block' so use the default of the <schema> item.</p> +<h3><a name="XML_SCHEMAS_TYPE_BLOCK_EXTENSION" id="XML_SCHEMAS_TYPE_BLOCK_EXTENSION"></a>Macro: XML_SCHEMAS_TYPE_BLOCK_EXTENSION</h3><pre>#define XML_SCHEMAS_TYPE_BLOCK_EXTENSION</pre><p>the complexType has a 'block' of "extension".</p> +<h3><a name="XML_SCHEMAS_TYPE_BLOCK_RESTRICTION" id="XML_SCHEMAS_TYPE_BLOCK_RESTRICTION"></a>Macro: XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</h3><pre>#define XML_SCHEMAS_TYPE_BLOCK_RESTRICTION</pre><p></p> <h3><a name="XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE" id="XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE"></a>Macro: XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</h3><pre>#define XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE</pre><p></p> <h3><a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION" id="XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION"></a>Macro: XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</h3><pre>#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION</pre><p>the simple or complex type has a derivation method of "extension".</p> <h3><a name="XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION" id="XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION"></a>Macro: XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</h3><pre>#define XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION</pre><p>the simple or complex type has a derivation method of "restriction".</p> @@ -98,6 +103,7 @@ The content of this structure is not made public by the API. <h3><a name="XML_SCHEMAS_TYPE_FINAL_RESTRICTION" id="XML_SCHEMAS_TYPE_FINAL_RESTRICTION"></a>Macro: XML_SCHEMAS_TYPE_FINAL_RESTRICTION</h3><pre>#define XML_SCHEMAS_TYPE_FINAL_RESTRICTION</pre><p>the simpleType/complexType has a final of "restriction".</p> <h3><a name="XML_SCHEMAS_TYPE_FINAL_UNION" id="XML_SCHEMAS_TYPE_FINAL_UNION"></a>Macro: XML_SCHEMAS_TYPE_FINAL_UNION</h3><pre>#define XML_SCHEMAS_TYPE_FINAL_UNION</pre><p>the simpleType has a final of "union".</p> <h3><a name="XML_SCHEMAS_TYPE_GLOBAL" id="XML_SCHEMAS_TYPE_GLOBAL"></a>Macro: XML_SCHEMAS_TYPE_GLOBAL</h3><pre>#define XML_SCHEMAS_TYPE_GLOBAL</pre><p>the type is global</p> +<h3><a name="XML_SCHEMAS_TYPE_MARKED" id="XML_SCHEMAS_TYPE_MARKED"></a>Macro: XML_SCHEMAS_TYPE_MARKED</h3><pre>#define XML_SCHEMAS_TYPE_MARKED</pre><p></p> <h3><a name="XML_SCHEMAS_TYPE_MIXED" id="XML_SCHEMAS_TYPE_MIXED"></a>Macro: XML_SCHEMAS_TYPE_MIXED</h3><pre>#define XML_SCHEMAS_TYPE_MIXED</pre><p>the element content type is mixed</p> <h3><a name="XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD" id="XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD"></a>Macro: XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</h3><pre>#define XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD</pre><p>the complexType owns an <a href="libxml-SAX.html#attribute">attribute</a> wildcard, i.e. it can be freed by the complexType</p> <h3><a name="XML_SCHEMAS_TYPE_VARIETY_ABSENT" id="XML_SCHEMAS_TYPE_VARIETY_ABSENT"></a>Macro: XML_SCHEMAS_TYPE_VARIETY_ABSENT</h3><pre>#define XML_SCHEMAS_TYPE_VARIETY_ABSENT</pre><p>the simpleType has a variety of "absent".</p> @@ -126,6 +132,8 @@ The content of this structure is not made public by the API. const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * targetNamespace int flags const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * refPrefix + <a href="libxml-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> defVal + <a href="libxml-schemasInternals.html#xmlSchemaAttributePtr">xmlSchemaAttributePtr</a> refDecl }</pre><h3><a name="xmlSchemaAttributeGroup" id="xmlSchemaAttributeGroup">Structure xmlSchemaAttributeGroup</a></h3><pre class="programlisting">Structure xmlSchemaAttributeGroup<br />struct _xmlSchemaAttributeGroup { <a href="libxml-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a> type : The kind of type struct _xmlSchemaAttribute * next : the next <a href="libxml-SAX.html#attribute">attribute</a> if in a group ... @@ -139,6 +147,7 @@ The content of this structure is not made public by the API. int flags <a href="libxml-schemasInternals.html#xmlSchemaWildcardPtr">xmlSchemaWildcardPtr</a> attributeWildcard const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * refPrefix + <a href="libxml-schemasInternals.html#xmlSchemaAttributeGroupPtr">xmlSchemaAttributeGroupPtr</a> refItem : The referenced <a href="libxml-SAX.html#attribute">attribute</a> group }</pre><h3><a name="xmlSchemaAttributeLink" id="xmlSchemaAttributeLink">Structure xmlSchemaAttributeLink</a></h3><pre class="programlisting">Structure xmlSchemaAttributeLink<br />struct _xmlSchemaAttributeLink { struct _xmlSchemaAttributeLink * next : the next <a href="libxml-SAX.html#attribute">attribute</a> link ... struct _xmlSchemaAttribute * attr : the linked <a href="libxml-SAX.html#attribute">attribute</a> @@ -177,6 +186,7 @@ The content of this structure is not made public by the API. <a href="libxml-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> contModel <a href="libxml-schemasInternals.html#xmlSchemaContentType">xmlSchemaContentType</a> contentType const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * refPrefix + <a href="libxml-schemasInternals.html#xmlSchemaValPtr">xmlSchemaValPtr</a> defVal }</pre><h3><a name="xmlSchemaFacet" id="xmlSchemaFacet">Structure xmlSchemaFacet</a></h3><pre class="programlisting">Structure xmlSchemaFacet<br />struct _xmlSchemaFacet { <a href="libxml-schemasInternals.html#xmlSchemaTypeType">xmlSchemaTypeType</a> type : The kind of type struct _xmlSchemaFacet * next : the next type if in a sequence ... @@ -224,6 +234,7 @@ The content of this structure is not made public by the API. <a href="libxml-schemasInternals.html#xmlSchemaFacetLinkPtr">xmlSchemaFacetLinkPtr</a> facetSet const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * refPrefix <a href="libxml-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> contentTypeDef + <a href="libxml-xmlregexp.html#xmlRegexpPtr">xmlRegexpPtr</a> contModel }</pre><h3><a name="xmlSchemaTypeLink" id="xmlSchemaTypeLink">Structure xmlSchemaTypeLink</a></h3><pre class="programlisting">Structure xmlSchemaTypeLink<br />struct _xmlSchemaTypeLink { struct _xmlSchemaTypeLink * next : the next type link ... <a href="libxml-schemasInternals.html#xmlSchemaTypePtr">xmlSchemaTypePtr</a> type : the linked typ diff --git a/doc/html/libxml-xmlautomata.html b/doc/html/libxml-xmlautomata.html index f791881..fb11c2e 100644 --- a/doc/html/libxml-xmlautomata.html +++ b/doc/html/libxml-xmlautomata.html @@ -21,11 +21,13 @@ The content of this structure is not made public by the API. <pre class="programlisting">int <a href="#xmlAutomataIsDeterminist">xmlAutomataIsDeterminist</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewAllTrans">xmlAutomataNewAllTrans</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> int lax)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans">xmlAutomataNewCountTrans</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> int min, <br /> int max, <br /> void * data)</pre> +<pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountTrans2">xmlAutomataNewCountTrans2</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token2, <br /> int min, <br /> int max, <br /> void * data)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCountedTrans">xmlAutomataNewCountedTrans</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> int counter)</pre> <pre class="programlisting">int <a href="#xmlAutomataNewCounter">xmlAutomataNewCounter</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> int min, <br /> int max)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewCounterTrans">xmlAutomataNewCounterTrans</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> int counter)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewEpsilon">xmlAutomataNewEpsilon</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans">xmlAutomataNewOnceTrans</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> int min, <br /> int max, <br /> void * data)</pre> +<pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewOnceTrans2">xmlAutomataNewOnceTrans2</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token2, <br /> int min, <br /> int max, <br /> void * data)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewState">xmlAutomataNewState</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition">xmlAutomataNewTransition</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> void * data)</pre> <pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> <a href="#xmlAutomataNewTransition2">xmlAutomataNewTransition2</a> (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token2, <br /> void * data)</pre> @@ -47,7 +49,9 @@ The content of this structure is not made public by the API. </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a an ALL transition from the @from state to the target state. That transition is an epsilon transition allowed only when all transitions from the @from node have been activated.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>lax</tt></i>:</span></td><td>allow to transition if not all all transitions have been activated</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewCountTrans" id="xmlAutomataNewCountTrans"></a>Function: xmlAutomataNewCountTrans</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCountTrans (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> int min, <br /> int max, <br /> void * data)<br /> </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max</p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewCountedTrans" id="xmlAutomataNewCountedTrans"></a>Function: xmlAutomataNewCountedTrans</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCountedTrans (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> int counter)<br /> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewCountTrans2" id="xmlAutomataNewCountTrans2"></a>Function: xmlAutomataNewCountTrans2</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCountTrans2 (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token2, <br /> int min, <br /> int max, <br /> void * data)<br /> +</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewCountedTrans" id="xmlAutomataNewCountedTrans"></a>Function: xmlAutomataNewCountedTrans</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewCountedTrans (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> int counter)<br /> </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>counter</tt></i>:</span></td><td>the counter associated to that transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewCounter" id="xmlAutomataNewCounter"></a>Function: xmlAutomataNewCounter</h3><pre class="programlisting">int xmlAutomataNewCounter (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> int min, <br /> int max)<br /> </pre><p>Create a new counter</p> @@ -57,7 +61,9 @@ The content of this structure is not made public by the API. </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewOnceTrans" id="xmlAutomataNewOnceTrans"></a>Function: xmlAutomataNewOnceTrans</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewOnceTrans (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> int min, <br /> int max, <br /> void * data)<br /> </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and whose number is between @min and @max, moreover that transition can only be crossed once.</p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewState" id="xmlAutomataNewState"></a>Function: xmlAutomataNewState</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewState (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br /> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewOnceTrans2" id="xmlAutomataNewOnceTrans2"></a>Function: xmlAutomataNewOnceTrans2</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewOnceTrans2 (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token2, <br /> int min, <br /> int max, <br /> void * data)<br /> +</pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>from</tt></i>:</span></td><td>the starting point of the transition</td></tr><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>the target point of the transition or NULL</td></tr><tr><td><span class="term"><i><tt>token</tt></i>:</span></td><td>the input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>token2</tt></i>:</span></td><td>the second input string associated to that transition</td></tr><tr><td><span class="term"><i><tt>min</tt></i>:</span></td><td>the minimum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>max</tt></i>:</span></td><td>the maximum successive occurences of token</td></tr><tr><td><span class="term"><i><tt>data</tt></i>:</span></td><td>data associated to the transition</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the target state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewState" id="xmlAutomataNewState"></a>Function: xmlAutomataNewState</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewState (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am)<br /> </pre><p>Create a new disconnected state in the automata</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the new state or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlAutomataNewTransition" id="xmlAutomataNewTransition"></a>Function: xmlAutomataNewTransition</h3><pre class="programlisting"><a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> xmlAutomataNewTransition (<a href="libxml-xmlautomata.html#xmlAutomataPtr">xmlAutomataPtr</a> am, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> from, <br /> <a href="libxml-xmlautomata.html#xmlAutomataStatePtr">xmlAutomataStatePtr</a> to, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * token, <br /> void * data)<br /> </pre><p>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by the value of @token</p> diff --git a/doc/html/libxml-xmlerror.html b/doc/html/libxml-xmlerror.html index 6cfe7de..8c8f938 100644 --- a/doc/html/libxml-xmlerror.html +++ b/doc/html/libxml-xmlerror.html @@ -524,122 +524,126 @@ void <a href="#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> (void * userD <a name="XML_SCHEMAP_UNKNOWN_UNION_CHILD" id="XML_SCHEMAP_UNKNOWN_UNION_CHILD">XML_SCHEMAP_UNKNOWN_UNION_CHILD</a> = 1754 : 1754 <a name="XML_SCHEMAP_ELEM_DEFAULT_FIXED" id="XML_SCHEMAP_ELEM_DEFAULT_FIXED">XML_SCHEMAP_ELEM_DEFAULT_FIXED</a> = 1755 : 1755 <a name="XML_SCHEMAP_REGEXP_INVALID" id="XML_SCHEMAP_REGEXP_INVALID">XML_SCHEMAP_REGEXP_INVALID</a> = 1756 : 1756 - <a name="XML_SCHEMAP_FAILED_LOAD" id="XML_SCHEMAP_FAILED_LOAD">XML_SCHEMAP_FAILED_LOAD</a> = 1757 : 1756 - <a name="XML_SCHEMAP_NOTHING_TO_PARSE" id="XML_SCHEMAP_NOTHING_TO_PARSE">XML_SCHEMAP_NOTHING_TO_PARSE</a> = 1758 : 1757 - <a name="XML_SCHEMAP_NOROOT" id="XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a> = 1759 : 1758 - <a name="XML_SCHEMAP_REDEFINED_GROUP" id="XML_SCHEMAP_REDEFINED_GROUP">XML_SCHEMAP_REDEFINED_GROUP</a> = 1760 : 1759 - <a name="XML_SCHEMAP_REDEFINED_TYPE" id="XML_SCHEMAP_REDEFINED_TYPE">XML_SCHEMAP_REDEFINED_TYPE</a> = 1761 : 1760 - <a name="XML_SCHEMAP_REDEFINED_ELEMENT" id="XML_SCHEMAP_REDEFINED_ELEMENT">XML_SCHEMAP_REDEFINED_ELEMENT</a> = 1762 : 1761 - <a name="XML_SCHEMAP_REDEFINED_ATTRGROUP" id="XML_SCHEMAP_REDEFINED_ATTRGROUP">XML_SCHEMAP_REDEFINED_ATTRGROUP</a> = 1763 : 1762 - <a name="XML_SCHEMAP_REDEFINED_ATTR" id="XML_SCHEMAP_REDEFINED_ATTR">XML_SCHEMAP_REDEFINED_ATTR</a> = 1764 : 1763 - <a name="XML_SCHEMAP_REDEFINED_NOTATION" id="XML_SCHEMAP_REDEFINED_NOTATION">XML_SCHEMAP_REDEFINED_NOTATION</a> = 1765 : 1764 - <a name="XML_SCHEMAP_FAILED_PARSE" id="XML_SCHEMAP_FAILED_PARSE">XML_SCHEMAP_FAILED_PARSE</a> = 1766 : 1765 - <a name="XML_SCHEMAP_UNKNOWN_PREFIX" id="XML_SCHEMAP_UNKNOWN_PREFIX">XML_SCHEMAP_UNKNOWN_PREFIX</a> = 1767 : 1766 - <a name="XML_SCHEMAP_DEF_AND_PREFIX" id="XML_SCHEMAP_DEF_AND_PREFIX">XML_SCHEMAP_DEF_AND_PREFIX</a> = 1768 : 1767 - <a name="XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD" id="XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD">XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD</a> = 1769 : 1768 - <a name="XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI" id="XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI</a> = 1770 : 1769 - <a name="XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI" id="XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI</a> = 1771 : 1770 - <a name="XML_SCHEMAP_NOT_SCHEMA" id="XML_SCHEMAP_NOT_SCHEMA">XML_SCHEMAP_NOT_SCHEMA</a> = 1772 : 1771 - <a name="XML_SCHEMAP_UNKNOWN_MEMBER_TYPE" id="XML_SCHEMAP_UNKNOWN_MEMBER_TYPE">XML_SCHEMAP_UNKNOWN_MEMBER_TYPE</a> = 1773 : 1772 - <a name="XML_SCHEMAP_INVALID_ATTR_USE" id="XML_SCHEMAP_INVALID_ATTR_USE">XML_SCHEMAP_INVALID_ATTR_USE</a> = 1774 : 1773 - <a name="XML_SCHEMAP_RECURSIVE" id="XML_SCHEMAP_RECURSIVE">XML_SCHEMAP_RECURSIVE</a> = 1775 : 1774 - <a name="XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE" id="XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE">XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE</a> = 1776 : 1775 - <a name="XML_SCHEMAP_INVALID_ATTR_COMBINATION" id="XML_SCHEMAP_INVALID_ATTR_COMBINATION">XML_SCHEMAP_INVALID_ATTR_COMBINATION</a> = 1777 : 1776 - <a name="XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION" id="XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION">XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION</a> = 1778 : 1777 - <a name="XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD" id="XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a> = 1779 : 1778 - <a name="XML_SCHEMAP_INVALID_ATTR_NAME" id="XML_SCHEMAP_INVALID_ATTR_NAME">XML_SCHEMAP_INVALID_ATTR_NAME</a> = 1780 : 1779 - <a name="XML_SCHEMAP_REF_AND_CONTENT" id="XML_SCHEMAP_REF_AND_CONTENT">XML_SCHEMAP_REF_AND_CONTENT</a> = 1781 : 1780 - <a name="XML_SCHEMAP_CT_PROPS_CORRECT_1" id="XML_SCHEMAP_CT_PROPS_CORRECT_1">XML_SCHEMAP_CT_PROPS_CORRECT_1</a> = 1782 : 1781 - <a name="XML_SCHEMAP_CT_PROPS_CORRECT_2" id="XML_SCHEMAP_CT_PROPS_CORRECT_2">XML_SCHEMAP_CT_PROPS_CORRECT_2</a> = 1783 : 1782 - <a name="XML_SCHEMAP_CT_PROPS_CORRECT_3" id="XML_SCHEMAP_CT_PROPS_CORRECT_3">XML_SCHEMAP_CT_PROPS_CORRECT_3</a> = 1784 : 1783 - <a name="XML_SCHEMAP_CT_PROPS_CORRECT_4" id="XML_SCHEMAP_CT_PROPS_CORRECT_4">XML_SCHEMAP_CT_PROPS_CORRECT_4</a> = 1785 : 1784 - <a name="XML_SCHEMAP_CT_PROPS_CORRECT_5" id="XML_SCHEMAP_CT_PROPS_CORRECT_5">XML_SCHEMAP_CT_PROPS_CORRECT_5</a> = 1786 : 1785 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a> = 1787 : 1786 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a> = 1788 : 1787 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a> = 1789 : 1788 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a> = 1790 : 1789 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a> = 1791 : 1790 - <a name="XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER" id="XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER">XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER</a> = 1792 : 1791 - <a name="XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE" id="XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE">XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE</a> = 1793 : 1792 - <a name="XML_SCHEMAP_UNION_NOT_EXPRESSIBLE" id="XML_SCHEMAP_UNION_NOT_EXPRESSIBLE">XML_SCHEMAP_UNION_NOT_EXPRESSIBLE</a> = 1794 : 1793 - <a name="XML_SCHEMAP_SRC_IMPORT_3_1" id="XML_SCHEMAP_SRC_IMPORT_3_1">XML_SCHEMAP_SRC_IMPORT_3_1</a> = 1795 : 1794 - <a name="XML_SCHEMAP_SRC_IMPORT_3_2" id="XML_SCHEMAP_SRC_IMPORT_3_2">XML_SCHEMAP_SRC_IMPORT_3_2</a> = 1796 : 1795 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a> = 1797 : 1796 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2</a> = 1798 : 1797 - <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3</a> = 1799 : 1798 - <a name="XML_SCHEMAP_COS_CT_EXTENDS_1_3" id="XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a> = 1800 : 1799 - <a name="XML_SCHEMAV_NOROOT" id="XML_SCHEMAV_NOROOT">XML_SCHEMAV_NOROOT</a> = 1800 - <a name="XML_SCHEMAV_UNDECLAREDELEM" id="XML_SCHEMAV_UNDECLAREDELEM">XML_SCHEMAV_UNDECLAREDELEM</a> = 1801 : 1801 - <a name="XML_SCHEMAV_NOTTOPLEVEL" id="XML_SCHEMAV_NOTTOPLEVEL">XML_SCHEMAV_NOTTOPLEVEL</a> = 1802 : 1802 - <a name="XML_SCHEMAV_MISSING" id="XML_SCHEMAV_MISSING">XML_SCHEMAV_MISSING</a> = 1803 : 1803 - <a name="XML_SCHEMAV_WRONGELEM" id="XML_SCHEMAV_WRONGELEM">XML_SCHEMAV_WRONGELEM</a> = 1804 : 1804 - <a name="XML_SCHEMAV_NOTYPE" id="XML_SCHEMAV_NOTYPE">XML_SCHEMAV_NOTYPE</a> = 1805 : 1805 - <a name="XML_SCHEMAV_NOROLLBACK" id="XML_SCHEMAV_NOROLLBACK">XML_SCHEMAV_NOROLLBACK</a> = 1806 : 1806 - <a name="XML_SCHEMAV_ISABSTRACT" id="XML_SCHEMAV_ISABSTRACT">XML_SCHEMAV_ISABSTRACT</a> = 1807 : 1807 - <a name="XML_SCHEMAV_NOTEMPTY" id="XML_SCHEMAV_NOTEMPTY">XML_SCHEMAV_NOTEMPTY</a> = 1808 : 1808 - <a name="XML_SCHEMAV_ELEMCONT" id="XML_SCHEMAV_ELEMCONT">XML_SCHEMAV_ELEMCONT</a> = 1809 : 1809 - <a name="XML_SCHEMAV_HAVEDEFAULT" id="XML_SCHEMAV_HAVEDEFAULT">XML_SCHEMAV_HAVEDEFAULT</a> = 1810 : 1810 - <a name="XML_SCHEMAV_NOTNILLABLE" id="XML_SCHEMAV_NOTNILLABLE">XML_SCHEMAV_NOTNILLABLE</a> = 1811 : 1811 - <a name="XML_SCHEMAV_EXTRACONTENT" id="XML_SCHEMAV_EXTRACONTENT">XML_SCHEMAV_EXTRACONTENT</a> = 1812 : 1812 - <a name="XML_SCHEMAV_INVALIDATTR" id="XML_SCHEMAV_INVALIDATTR">XML_SCHEMAV_INVALIDATTR</a> = 1813 : 1813 - <a name="XML_SCHEMAV_INVALIDELEM" id="XML_SCHEMAV_INVALIDELEM">XML_SCHEMAV_INVALIDELEM</a> = 1814 : 1814 - <a name="XML_SCHEMAV_NOTDETERMINIST" id="XML_SCHEMAV_NOTDETERMINIST">XML_SCHEMAV_NOTDETERMINIST</a> = 1815 : 1815 - <a name="XML_SCHEMAV_CONSTRUCT" id="XML_SCHEMAV_CONSTRUCT">XML_SCHEMAV_CONSTRUCT</a> = 1816 : 1816 - <a name="XML_SCHEMAV_INTERNAL" id="XML_SCHEMAV_INTERNAL">XML_SCHEMAV_INTERNAL</a> = 1817 : 1817 - <a name="XML_SCHEMAV_NOTSIMPLE" id="XML_SCHEMAV_NOTSIMPLE">XML_SCHEMAV_NOTSIMPLE</a> = 1818 : 1818 - <a name="XML_SCHEMAV_ATTRUNKNOWN" id="XML_SCHEMAV_ATTRUNKNOWN">XML_SCHEMAV_ATTRUNKNOWN</a> = 1819 : 1819 - <a name="XML_SCHEMAV_ATTRINVALID" id="XML_SCHEMAV_ATTRINVALID">XML_SCHEMAV_ATTRINVALID</a> = 1820 : 1820 - <a name="XML_SCHEMAV_VALUE" id="XML_SCHEMAV_VALUE">XML_SCHEMAV_VALUE</a> = 1821 : 1821 - <a name="XML_SCHEMAV_FACET" id="XML_SCHEMAV_FACET">XML_SCHEMAV_FACET</a> = 1822 : 1822 - <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1</a> = 1823 : 1823 - <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2</a> = 1824 : 1824 - <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3</a> = 1825 : 1825 - <a name="XML_SCHEMAV_CVC_TYPE_3_1_1" id="XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a> = 1826 : 1826 - <a name="XML_SCHEMAV_CVC_TYPE_3_1_2" id="XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a> = 1827 : 1827 - <a name="XML_SCHEMAV_CVC_FACET_VALID" id="XML_SCHEMAV_CVC_FACET_VALID">XML_SCHEMAV_CVC_FACET_VALID</a> = 1828 : 1828 - <a name="XML_SCHEMAV_CVC_LENGTH_VALID" id="XML_SCHEMAV_CVC_LENGTH_VALID">XML_SCHEMAV_CVC_LENGTH_VALID</a> = 1829 : 1829 - <a name="XML_SCHEMAV_CVC_MINLENGTH_VALID" id="XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a> = 1830 : 1830 - <a name="XML_SCHEMAV_CVC_MAXLENGTH_VALID" id="XML_SCHEMAV_CVC_MAXLENGTH_VALID">XML_SCHEMAV_CVC_MAXLENGTH_VALID</a> = 1831 : 1831 - <a name="XML_SCHEMAV_CVC_MININCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MININCLUSIVE_VALID">XML_SCHEMAV_CVC_MININCLUSIVE_VALID</a> = 1832 : 1832 - <a name="XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID</a> = 1833 : 1833 - <a name="XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID</a> = 1834 : 1834 - <a name="XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID</a> = 1835 : 1835 - <a name="XML_SCHEMAV_CVC_TOTALDIGITS_VALID" id="XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a> = 1836 : 1836 - <a name="XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID" id="XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID">XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID</a> = 1837 : 1837 - <a name="XML_SCHEMAV_CVC_PATTERN_VALID" id="XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a> = 1838 : 1838 - <a name="XML_SCHEMAV_CVC_ENUMERATION_VALID" id="XML_SCHEMAV_CVC_ENUMERATION_VALID">XML_SCHEMAV_CVC_ENUMERATION_VALID</a> = 1839 : 1839 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a> = 1840 : 1840 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a> = 1841 : 1841 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a> = 1842 : 1842 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4</a> = 1843 : 1843 - <a name="XML_SCHEMAV_CVC_ELT_1" id="XML_SCHEMAV_CVC_ELT_1">XML_SCHEMAV_CVC_ELT_1</a> = 1844 : 1844 - <a name="XML_SCHEMAV_CVC_ELT_2" id="XML_SCHEMAV_CVC_ELT_2">XML_SCHEMAV_CVC_ELT_2</a> = 1845 : 1845 - <a name="XML_SCHEMAV_CVC_ELT_3_1" id="XML_SCHEMAV_CVC_ELT_3_1">XML_SCHEMAV_CVC_ELT_3_1</a> = 1846 - <a name="XML_SCHEMAV_CVC_ELT_3_2_1" id="XML_SCHEMAV_CVC_ELT_3_2_1">XML_SCHEMAV_CVC_ELT_3_2_1</a> = 1847 - <a name="XML_SCHEMAV_CVC_ELT_3_2_2" id="XML_SCHEMAV_CVC_ELT_3_2_2">XML_SCHEMAV_CVC_ELT_3_2_2</a> = 1848 - <a name="XML_SCHEMAV_CVC_ELT_4_1" id="XML_SCHEMAV_CVC_ELT_4_1">XML_SCHEMAV_CVC_ELT_4_1</a> = 1849 - <a name="XML_SCHEMAV_CVC_ELT_4_2" id="XML_SCHEMAV_CVC_ELT_4_2">XML_SCHEMAV_CVC_ELT_4_2</a> = 1850 - <a name="XML_SCHEMAV_CVC_ELT_4_3" id="XML_SCHEMAV_CVC_ELT_4_3">XML_SCHEMAV_CVC_ELT_4_3</a> = 1851 - <a name="XML_SCHEMAV_CVC_ELT_5_1_1" id="XML_SCHEMAV_CVC_ELT_5_1_1">XML_SCHEMAV_CVC_ELT_5_1_1</a> = 1852 - <a name="XML_SCHEMAV_CVC_ELT_5_1_2" id="XML_SCHEMAV_CVC_ELT_5_1_2">XML_SCHEMAV_CVC_ELT_5_1_2</a> = 1853 - <a name="XML_SCHEMAV_CVC_ELT_5_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_1">XML_SCHEMAV_CVC_ELT_5_2_1</a> = 1854 - <a name="XML_SCHEMAV_CVC_ELT_5_2_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_1</a> = 1855 - <a name="XML_SCHEMAV_CVC_ELT_5_2_2_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_2_1</a> = 1856 - <a name="XML_SCHEMAV_CVC_ELT_5_2_2_2_2" id="XML_SCHEMAV_CVC_ELT_5_2_2_2_2">XML_SCHEMAV_CVC_ELT_5_2_2_2_2</a> = 1857 - <a name="XML_SCHEMAV_CVC_ELT_6" id="XML_SCHEMAV_CVC_ELT_6">XML_SCHEMAV_CVC_ELT_6</a> = 1858 - <a name="XML_SCHEMAV_CVC_ELT_7" id="XML_SCHEMAV_CVC_ELT_7">XML_SCHEMAV_CVC_ELT_7</a> = 1859 - <a name="XML_SCHEMAV_CVC_ATTRIBUTE_1" id="XML_SCHEMAV_CVC_ATTRIBUTE_1">XML_SCHEMAV_CVC_ATTRIBUTE_1</a> = 1860 - <a name="XML_SCHEMAV_CVC_ATTRIBUTE_2" id="XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a> = 1861 - <a name="XML_SCHEMAV_CVC_ATTRIBUTE_3" id="XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a> = 1862 - <a name="XML_SCHEMAV_CVC_ATTRIBUTE_4" id="XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a> = 1863 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1</a> = 1864 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1</a> = 1865 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2</a> = 1866 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_4" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_4</a> = 1867 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1</a> = 1868 - <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2</a> = 1869 - <a name="XML_SCHEMAV_ELEMENT_CONTENT" id="XML_SCHEMAV_ELEMENT_CONTENT">XML_SCHEMAV_ELEMENT_CONTENT</a> = 1870 : 1846 non-W3C - <a name="XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING" id="XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a> = 1871 : non-W3C + <a name="XML_SCHEMAP_FAILED_LOAD" id="XML_SCHEMAP_FAILED_LOAD">XML_SCHEMAP_FAILED_LOAD</a> = 1757 : 1757 + <a name="XML_SCHEMAP_NOTHING_TO_PARSE" id="XML_SCHEMAP_NOTHING_TO_PARSE">XML_SCHEMAP_NOTHING_TO_PARSE</a> = 1758 : 1758 + <a name="XML_SCHEMAP_NOROOT" id="XML_SCHEMAP_NOROOT">XML_SCHEMAP_NOROOT</a> = 1759 : 1759 + <a name="XML_SCHEMAP_REDEFINED_GROUP" id="XML_SCHEMAP_REDEFINED_GROUP">XML_SCHEMAP_REDEFINED_GROUP</a> = 1760 : 1760 + <a name="XML_SCHEMAP_REDEFINED_TYPE" id="XML_SCHEMAP_REDEFINED_TYPE">XML_SCHEMAP_REDEFINED_TYPE</a> = 1761 : 1761 + <a name="XML_SCHEMAP_REDEFINED_ELEMENT" id="XML_SCHEMAP_REDEFINED_ELEMENT">XML_SCHEMAP_REDEFINED_ELEMENT</a> = 1762 : 1762 + <a name="XML_SCHEMAP_REDEFINED_ATTRGROUP" id="XML_SCHEMAP_REDEFINED_ATTRGROUP">XML_SCHEMAP_REDEFINED_ATTRGROUP</a> = 1763 : 1763 + <a name="XML_SCHEMAP_REDEFINED_ATTR" id="XML_SCHEMAP_REDEFINED_ATTR">XML_SCHEMAP_REDEFINED_ATTR</a> = 1764 : 1764 + <a name="XML_SCHEMAP_REDEFINED_NOTATION" id="XML_SCHEMAP_REDEFINED_NOTATION">XML_SCHEMAP_REDEFINED_NOTATION</a> = 1765 : 1765 + <a name="XML_SCHEMAP_FAILED_PARSE" id="XML_SCHEMAP_FAILED_PARSE">XML_SCHEMAP_FAILED_PARSE</a> = 1766 : 1766 + <a name="XML_SCHEMAP_UNKNOWN_PREFIX" id="XML_SCHEMAP_UNKNOWN_PREFIX">XML_SCHEMAP_UNKNOWN_PREFIX</a> = 1767 : 1767 + <a name="XML_SCHEMAP_DEF_AND_PREFIX" id="XML_SCHEMAP_DEF_AND_PREFIX">XML_SCHEMAP_DEF_AND_PREFIX</a> = 1768 : 1768 + <a name="XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD" id="XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD">XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD</a> = 1769 : 1769 + <a name="XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI" id="XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI</a> = 1770 : 1770 + <a name="XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI" id="XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI">XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI</a> = 1771 : 1771 + <a name="XML_SCHEMAP_NOT_SCHEMA" id="XML_SCHEMAP_NOT_SCHEMA">XML_SCHEMAP_NOT_SCHEMA</a> = 1772 : 1772 + <a name="XML_SCHEMAP_UNKNOWN_MEMBER_TYPE" id="XML_SCHEMAP_UNKNOWN_MEMBER_TYPE">XML_SCHEMAP_UNKNOWN_MEMBER_TYPE</a> = 1773 : 1773 + <a name="XML_SCHEMAP_INVALID_ATTR_USE" id="XML_SCHEMAP_INVALID_ATTR_USE">XML_SCHEMAP_INVALID_ATTR_USE</a> = 1774 : 1774 + <a name="XML_SCHEMAP_RECURSIVE" id="XML_SCHEMAP_RECURSIVE">XML_SCHEMAP_RECURSIVE</a> = 1775 : 1775 + <a name="XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE" id="XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE">XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE</a> = 1776 : 1776 + <a name="XML_SCHEMAP_INVALID_ATTR_COMBINATION" id="XML_SCHEMAP_INVALID_ATTR_COMBINATION">XML_SCHEMAP_INVALID_ATTR_COMBINATION</a> = 1777 : 1777 + <a name="XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION" id="XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION">XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION</a> = 1778 : 1778 + <a name="XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD" id="XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD">XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD</a> = 1779 : 1779 + <a name="XML_SCHEMAP_INVALID_ATTR_NAME" id="XML_SCHEMAP_INVALID_ATTR_NAME">XML_SCHEMAP_INVALID_ATTR_NAME</a> = 1780 : 1780 + <a name="XML_SCHEMAP_REF_AND_CONTENT" id="XML_SCHEMAP_REF_AND_CONTENT">XML_SCHEMAP_REF_AND_CONTENT</a> = 1781 : 1781 + <a name="XML_SCHEMAP_CT_PROPS_CORRECT_1" id="XML_SCHEMAP_CT_PROPS_CORRECT_1">XML_SCHEMAP_CT_PROPS_CORRECT_1</a> = 1782 : 1782 + <a name="XML_SCHEMAP_CT_PROPS_CORRECT_2" id="XML_SCHEMAP_CT_PROPS_CORRECT_2">XML_SCHEMAP_CT_PROPS_CORRECT_2</a> = 1783 : 1783 + <a name="XML_SCHEMAP_CT_PROPS_CORRECT_3" id="XML_SCHEMAP_CT_PROPS_CORRECT_3">XML_SCHEMAP_CT_PROPS_CORRECT_3</a> = 1784 : 1784 + <a name="XML_SCHEMAP_CT_PROPS_CORRECT_4" id="XML_SCHEMAP_CT_PROPS_CORRECT_4">XML_SCHEMAP_CT_PROPS_CORRECT_4</a> = 1785 : 1785 + <a name="XML_SCHEMAP_CT_PROPS_CORRECT_5" id="XML_SCHEMAP_CT_PROPS_CORRECT_5">XML_SCHEMAP_CT_PROPS_CORRECT_5</a> = 1786 : 1786 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1</a> = 1787 : 1787 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1</a> = 1788 : 1788 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2</a> = 1789 : 1789 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2</a> = 1790 : 1790 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3</a> = 1791 : 1791 + <a name="XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER" id="XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER">XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER</a> = 1792 : 1792 + <a name="XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE" id="XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE">XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE</a> = 1793 : 1793 + <a name="XML_SCHEMAP_UNION_NOT_EXPRESSIBLE" id="XML_SCHEMAP_UNION_NOT_EXPRESSIBLE">XML_SCHEMAP_UNION_NOT_EXPRESSIBLE</a> = 1794 : 1794 + <a name="XML_SCHEMAP_SRC_IMPORT_3_1" id="XML_SCHEMAP_SRC_IMPORT_3_1">XML_SCHEMAP_SRC_IMPORT_3_1</a> = 1795 : 1795 + <a name="XML_SCHEMAP_SRC_IMPORT_3_2" id="XML_SCHEMAP_SRC_IMPORT_3_2">XML_SCHEMAP_SRC_IMPORT_3_2</a> = 1796 : 1796 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1</a> = 1797 : 1797 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2</a> = 1798 : 1798 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3</a> = 1799 : 1799 + <a name="XML_SCHEMAP_COS_CT_EXTENDS_1_3" id="XML_SCHEMAP_COS_CT_EXTENDS_1_3">XML_SCHEMAP_COS_CT_EXTENDS_1_3</a> = 1800 : 1800 + <a name="XML_SCHEMAV_NOROOT" id="XML_SCHEMAV_NOROOT">XML_SCHEMAV_NOROOT</a> = 1801 + <a name="XML_SCHEMAV_UNDECLAREDELEM" id="XML_SCHEMAV_UNDECLAREDELEM">XML_SCHEMAV_UNDECLAREDELEM</a> = 1802 : 1802 + <a name="XML_SCHEMAV_NOTTOPLEVEL" id="XML_SCHEMAV_NOTTOPLEVEL">XML_SCHEMAV_NOTTOPLEVEL</a> = 1803 : 1803 + <a name="XML_SCHEMAV_MISSING" id="XML_SCHEMAV_MISSING">XML_SCHEMAV_MISSING</a> = 1804 : 1804 + <a name="XML_SCHEMAV_WRONGELEM" id="XML_SCHEMAV_WRONGELEM">XML_SCHEMAV_WRONGELEM</a> = 1805 : 1805 + <a name="XML_SCHEMAV_NOTYPE" id="XML_SCHEMAV_NOTYPE">XML_SCHEMAV_NOTYPE</a> = 1806 : 1806 + <a name="XML_SCHEMAV_NOROLLBACK" id="XML_SCHEMAV_NOROLLBACK">XML_SCHEMAV_NOROLLBACK</a> = 1807 : 1807 + <a name="XML_SCHEMAV_ISABSTRACT" id="XML_SCHEMAV_ISABSTRACT">XML_SCHEMAV_ISABSTRACT</a> = 1808 : 1808 + <a name="XML_SCHEMAV_NOTEMPTY" id="XML_SCHEMAV_NOTEMPTY">XML_SCHEMAV_NOTEMPTY</a> = 1809 : 1809 + <a name="XML_SCHEMAV_ELEMCONT" id="XML_SCHEMAV_ELEMCONT">XML_SCHEMAV_ELEMCONT</a> = 1810 : 1810 + <a name="XML_SCHEMAV_HAVEDEFAULT" id="XML_SCHEMAV_HAVEDEFAULT">XML_SCHEMAV_HAVEDEFAULT</a> = 1811 : 1811 + <a name="XML_SCHEMAV_NOTNILLABLE" id="XML_SCHEMAV_NOTNILLABLE">XML_SCHEMAV_NOTNILLABLE</a> = 1812 : 1812 + <a name="XML_SCHEMAV_EXTRACONTENT" id="XML_SCHEMAV_EXTRACONTENT">XML_SCHEMAV_EXTRACONTENT</a> = 1813 : 1813 + <a name="XML_SCHEMAV_INVALIDATTR" id="XML_SCHEMAV_INVALIDATTR">XML_SCHEMAV_INVALIDATTR</a> = 1814 : 1814 + <a name="XML_SCHEMAV_INVALIDELEM" id="XML_SCHEMAV_INVALIDELEM">XML_SCHEMAV_INVALIDELEM</a> = 1815 : 1815 + <a name="XML_SCHEMAV_NOTDETERMINIST" id="XML_SCHEMAV_NOTDETERMINIST">XML_SCHEMAV_NOTDETERMINIST</a> = 1816 : 1816 + <a name="XML_SCHEMAV_CONSTRUCT" id="XML_SCHEMAV_CONSTRUCT">XML_SCHEMAV_CONSTRUCT</a> = 1817 : 1817 + <a name="XML_SCHEMAV_INTERNAL" id="XML_SCHEMAV_INTERNAL">XML_SCHEMAV_INTERNAL</a> = 1818 : 1818 + <a name="XML_SCHEMAV_NOTSIMPLE" id="XML_SCHEMAV_NOTSIMPLE">XML_SCHEMAV_NOTSIMPLE</a> = 1819 : 1819 + <a name="XML_SCHEMAV_ATTRUNKNOWN" id="XML_SCHEMAV_ATTRUNKNOWN">XML_SCHEMAV_ATTRUNKNOWN</a> = 1820 : 1820 + <a name="XML_SCHEMAV_ATTRINVALID" id="XML_SCHEMAV_ATTRINVALID">XML_SCHEMAV_ATTRINVALID</a> = 1821 : 1821 + <a name="XML_SCHEMAV_VALUE" id="XML_SCHEMAV_VALUE">XML_SCHEMAV_VALUE</a> = 1822 : 1822 + <a name="XML_SCHEMAV_FACET" id="XML_SCHEMAV_FACET">XML_SCHEMAV_FACET</a> = 1823 : 1823 + <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1</a> = 1824 : 1824 + <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2</a> = 1825 : 1825 + <a name="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3" id="XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3">XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3</a> = 1826 : 1826 + <a name="XML_SCHEMAV_CVC_TYPE_3_1_1" id="XML_SCHEMAV_CVC_TYPE_3_1_1">XML_SCHEMAV_CVC_TYPE_3_1_1</a> = 1827 : 1827 + <a name="XML_SCHEMAV_CVC_TYPE_3_1_2" id="XML_SCHEMAV_CVC_TYPE_3_1_2">XML_SCHEMAV_CVC_TYPE_3_1_2</a> = 1828 : 1828 + <a name="XML_SCHEMAV_CVC_FACET_VALID" id="XML_SCHEMAV_CVC_FACET_VALID">XML_SCHEMAV_CVC_FACET_VALID</a> = 1829 : 1829 + <a name="XML_SCHEMAV_CVC_LENGTH_VALID" id="XML_SCHEMAV_CVC_LENGTH_VALID">XML_SCHEMAV_CVC_LENGTH_VALID</a> = 1830 : 1830 + <a name="XML_SCHEMAV_CVC_MINLENGTH_VALID" id="XML_SCHEMAV_CVC_MINLENGTH_VALID">XML_SCHEMAV_CVC_MINLENGTH_VALID</a> = 1831 : 1831 + <a name="XML_SCHEMAV_CVC_MAXLENGTH_VALID" id="XML_SCHEMAV_CVC_MAXLENGTH_VALID">XML_SCHEMAV_CVC_MAXLENGTH_VALID</a> = 1832 : 1832 + <a name="XML_SCHEMAV_CVC_MININCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MININCLUSIVE_VALID">XML_SCHEMAV_CVC_MININCLUSIVE_VALID</a> = 1833 : 1833 + <a name="XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID</a> = 1834 : 1834 + <a name="XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID</a> = 1835 : 1835 + <a name="XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID" id="XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID">XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID</a> = 1836 : 1836 + <a name="XML_SCHEMAV_CVC_TOTALDIGITS_VALID" id="XML_SCHEMAV_CVC_TOTALDIGITS_VALID">XML_SCHEMAV_CVC_TOTALDIGITS_VALID</a> = 1837 : 1837 + <a name="XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID" id="XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID">XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID</a> = 1838 : 1838 + <a name="XML_SCHEMAV_CVC_PATTERN_VALID" id="XML_SCHEMAV_CVC_PATTERN_VALID">XML_SCHEMAV_CVC_PATTERN_VALID</a> = 1839 : 1839 + <a name="XML_SCHEMAV_CVC_ENUMERATION_VALID" id="XML_SCHEMAV_CVC_ENUMERATION_VALID">XML_SCHEMAV_CVC_ENUMERATION_VALID</a> = 1840 : 1840 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1</a> = 1841 : 1841 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2</a> = 1842 : 1842 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3</a> = 1843 : 1843 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4</a> = 1844 : 1844 + <a name="XML_SCHEMAV_CVC_ELT_1" id="XML_SCHEMAV_CVC_ELT_1">XML_SCHEMAV_CVC_ELT_1</a> = 1845 : 1845 + <a name="XML_SCHEMAV_CVC_ELT_2" id="XML_SCHEMAV_CVC_ELT_2">XML_SCHEMAV_CVC_ELT_2</a> = 1846 : 1846 + <a name="XML_SCHEMAV_CVC_ELT_3_1" id="XML_SCHEMAV_CVC_ELT_3_1">XML_SCHEMAV_CVC_ELT_3_1</a> = 1847 : 1847 + <a name="XML_SCHEMAV_CVC_ELT_3_2_1" id="XML_SCHEMAV_CVC_ELT_3_2_1">XML_SCHEMAV_CVC_ELT_3_2_1</a> = 1848 : 1848 + <a name="XML_SCHEMAV_CVC_ELT_3_2_2" id="XML_SCHEMAV_CVC_ELT_3_2_2">XML_SCHEMAV_CVC_ELT_3_2_2</a> = 1849 : 1849 + <a name="XML_SCHEMAV_CVC_ELT_4_1" id="XML_SCHEMAV_CVC_ELT_4_1">XML_SCHEMAV_CVC_ELT_4_1</a> = 1850 : 1850 + <a name="XML_SCHEMAV_CVC_ELT_4_2" id="XML_SCHEMAV_CVC_ELT_4_2">XML_SCHEMAV_CVC_ELT_4_2</a> = 1851 : 1851 + <a name="XML_SCHEMAV_CVC_ELT_4_3" id="XML_SCHEMAV_CVC_ELT_4_3">XML_SCHEMAV_CVC_ELT_4_3</a> = 1852 : 1852 + <a name="XML_SCHEMAV_CVC_ELT_5_1_1" id="XML_SCHEMAV_CVC_ELT_5_1_1">XML_SCHEMAV_CVC_ELT_5_1_1</a> = 1853 : 1853 + <a name="XML_SCHEMAV_CVC_ELT_5_1_2" id="XML_SCHEMAV_CVC_ELT_5_1_2">XML_SCHEMAV_CVC_ELT_5_1_2</a> = 1854 : 1854 + <a name="XML_SCHEMAV_CVC_ELT_5_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_1">XML_SCHEMAV_CVC_ELT_5_2_1</a> = 1855 : 1855 + <a name="XML_SCHEMAV_CVC_ELT_5_2_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_1</a> = 1856 : 1856 + <a name="XML_SCHEMAV_CVC_ELT_5_2_2_2_1" id="XML_SCHEMAV_CVC_ELT_5_2_2_2_1">XML_SCHEMAV_CVC_ELT_5_2_2_2_1</a> = 1857 : 1857 + <a name="XML_SCHEMAV_CVC_ELT_5_2_2_2_2" id="XML_SCHEMAV_CVC_ELT_5_2_2_2_2">XML_SCHEMAV_CVC_ELT_5_2_2_2_2</a> = 1858 : 1858 + <a name="XML_SCHEMAV_CVC_ELT_6" id="XML_SCHEMAV_CVC_ELT_6">XML_SCHEMAV_CVC_ELT_6</a> = 1859 : 1859 + <a name="XML_SCHEMAV_CVC_ELT_7" id="XML_SCHEMAV_CVC_ELT_7">XML_SCHEMAV_CVC_ELT_7</a> = 1860 : 1860 + <a name="XML_SCHEMAV_CVC_ATTRIBUTE_1" id="XML_SCHEMAV_CVC_ATTRIBUTE_1">XML_SCHEMAV_CVC_ATTRIBUTE_1</a> = 1861 : 1861 + <a name="XML_SCHEMAV_CVC_ATTRIBUTE_2" id="XML_SCHEMAV_CVC_ATTRIBUTE_2">XML_SCHEMAV_CVC_ATTRIBUTE_2</a> = 1862 : 1862 + <a name="XML_SCHEMAV_CVC_ATTRIBUTE_3" id="XML_SCHEMAV_CVC_ATTRIBUTE_3">XML_SCHEMAV_CVC_ATTRIBUTE_3</a> = 1863 : 1863 + <a name="XML_SCHEMAV_CVC_ATTRIBUTE_4" id="XML_SCHEMAV_CVC_ATTRIBUTE_4">XML_SCHEMAV_CVC_ATTRIBUTE_4</a> = 1864 : 1864 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1</a> = 1865 : 1865 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1</a> = 1866 : 1866 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2</a> = 1867 : 1867 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_4" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_4">XML_SCHEMAV_CVC_COMPLEX_TYPE_4</a> = 1868 : 1868 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1</a> = 1869 : 1869 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2">XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2</a> = 1870 : 1870 + <a name="XML_SCHEMAV_ELEMENT_CONTENT" id="XML_SCHEMAV_ELEMENT_CONTENT">XML_SCHEMAV_ELEMENT_CONTENT</a> = 1871 : 1871 + <a name="XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING" id="XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING">XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING</a> = 1872 : 1872 + <a name="XML_SCHEMAV_CVC_COMPLEX_TYPE_1" id="XML_SCHEMAV_CVC_COMPLEX_TYPE_1">XML_SCHEMAV_CVC_COMPLEX_TYPE_1</a> = 1873 : 1873 + <a name="XML_SCHEMAV_CVC_AU" id="XML_SCHEMAV_CVC_AU">XML_SCHEMAV_CVC_AU</a> = 1874 : 1874 + <a name="XML_SCHEMAV_CVC_TYPE_1" id="XML_SCHEMAV_CVC_TYPE_1">XML_SCHEMAV_CVC_TYPE_1</a> = 1875 : 1875 + <a name="XML_SCHEMAV_CVC_TYPE_2" id="XML_SCHEMAV_CVC_TYPE_2">XML_SCHEMAV_CVC_TYPE_2</a> = 1876 : 1876 <a name="XML_XPTR_UNKNOWN_SCHEME" id="XML_XPTR_UNKNOWN_SCHEME">XML_XPTR_UNKNOWN_SCHEME</a> = 1900 <a name="XML_XPTR_CHILDSEQ_START" id="XML_XPTR_CHILDSEQ_START">XML_XPTR_CHILDSEQ_START</a> = 1901 : 1901 <a name="XML_XPTR_EVAL_FAILED" id="XML_XPTR_EVAL_FAILED">XML_XPTR_EVAL_FAILED</a> = 1902 : 1902 @@ -712,19 +716,28 @@ void <a href="#xmlStructuredErrorFunc">xmlStructuredErrorFunc</a> (void * userD <a name="XML_SCHEMAP_SRC_ATTRIBUTE_4" id="XML_SCHEMAP_SRC_ATTRIBUTE_4">XML_SCHEMAP_SRC_ATTRIBUTE_4</a> = 3055 : 3055 <a name="XML_SCHEMAP_NO_XMLNS" id="XML_SCHEMAP_NO_XMLNS">XML_SCHEMAP_NO_XMLNS</a> = 3056 : 3056 <a name="XML_SCHEMAP_NO_XSI" id="XML_SCHEMAP_NO_XSI">XML_SCHEMAP_NO_XSI</a> = 3057 : 3057 - <a name="XML_SCHEMAP_COS_VALID_DEFAULT_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_1">XML_SCHEMAP_COS_VALID_DEFAULT_1</a> = 3058 - <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_1</a> = 3059 - <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1</a> = 3060 - <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2</a> = 3061 - <a name="XML_SCHEMAP_CVC_SIMPLE_TYPE" id="XML_SCHEMAP_CVC_SIMPLE_TYPE">XML_SCHEMAP_CVC_SIMPLE_TYPE</a> = 3062 - <a name="XML_SCHEMAP_COS_CT_EXTENDS_1_1" id="XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a> = 3063 - <a name="XML_SCHEMAP_SRC_IMPORT_1_1" id="XML_SCHEMAP_SRC_IMPORT_1_1">XML_SCHEMAP_SRC_IMPORT_1_1</a> = 3064 - <a name="XML_SCHEMAP_SRC_IMPORT_1_2" id="XML_SCHEMAP_SRC_IMPORT_1_2">XML_SCHEMAP_SRC_IMPORT_1_2</a> = 3065 - <a name="XML_SCHEMAP_SRC_IMPORT_2" id="XML_SCHEMAP_SRC_IMPORT_2">XML_SCHEMAP_SRC_IMPORT_2</a> = 3066 - <a name="XML_SCHEMAP_SRC_IMPORT_2_1" id="XML_SCHEMAP_SRC_IMPORT_2_1">XML_SCHEMAP_SRC_IMPORT_2_1</a> = 3067 - <a name="XML_SCHEMAP_SRC_IMPORT_2_2" id="XML_SCHEMAP_SRC_IMPORT_2_2">XML_SCHEMAP_SRC_IMPORT_2_2</a> = 3068 - <a name="XML_SCHEMAP_INTERNAL" id="XML_SCHEMAP_INTERNAL">XML_SCHEMAP_INTERNAL</a> = 3069 : non-W3C - <a name="XML_SCHEMAP_NOT_DETERMINISTIC" id="XML_SCHEMAP_NOT_DETERMINISTIC">XML_SCHEMAP_NOT_DETERMINISTIC</a> = 3070 : non-W3C + <a name="XML_SCHEMAP_COS_VALID_DEFAULT_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_1">XML_SCHEMAP_COS_VALID_DEFAULT_1</a> = 3058 : 3058 + <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_1</a> = 3059 : 3059 + <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1</a> = 3060 : 3060 + <a name="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2" id="XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2">XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2</a> = 3061 : 3061 + <a name="XML_SCHEMAP_CVC_SIMPLE_TYPE" id="XML_SCHEMAP_CVC_SIMPLE_TYPE">XML_SCHEMAP_CVC_SIMPLE_TYPE</a> = 3062 : 3062 + <a name="XML_SCHEMAP_COS_CT_EXTENDS_1_1" id="XML_SCHEMAP_COS_CT_EXTENDS_1_1">XML_SCHEMAP_COS_CT_EXTENDS_1_1</a> = 3063 : 3063 + <a name="XML_SCHEMAP_SRC_IMPORT_1_1" id="XML_SCHEMAP_SRC_IMPORT_1_1">XML_SCHEMAP_SRC_IMPORT_1_1</a> = 3064 : 3064 + <a name="XML_SCHEMAP_SRC_IMPORT_1_2" id="XML_SCHEMAP_SRC_IMPORT_1_2">XML_SCHEMAP_SRC_IMPORT_1_2</a> = 3065 : 3065 + <a name="XML_SCHEMAP_SRC_IMPORT_2" id="XML_SCHEMAP_SRC_IMPORT_2">XML_SCHEMAP_SRC_IMPORT_2</a> = 3066 : 3066 + <a name="XML_SCHEMAP_SRC_IMPORT_2_1" id="XML_SCHEMAP_SRC_IMPORT_2_1">XML_SCHEMAP_SRC_IMPORT_2_1</a> = 3067 : 3067 + <a name="XML_SCHEMAP_SRC_IMPORT_2_2" id="XML_SCHEMAP_SRC_IMPORT_2_2">XML_SCHEMAP_SRC_IMPORT_2_2</a> = 3068 : 3068 + <a name="XML_SCHEMAP_INTERNAL" id="XML_SCHEMAP_INTERNAL">XML_SCHEMAP_INTERNAL</a> = 3069 : 3069 non-W3C + <a name="XML_SCHEMAP_NOT_DETERMINISTIC" id="XML_SCHEMAP_NOT_DETERMINISTIC">XML_SCHEMAP_NOT_DETERMINISTIC</a> = 3070 : 3070 non-W3C + <a name="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1" id="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1</a> = 3071 : 3071 + <a name="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2" id="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2</a> = 3072 : 3072 + <a name="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3" id="XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3">XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3</a> = 3073 : 3073 + <a name="XML_SCHEMAP_MG_PROPS_CORRECT_1" id="XML_SCHEMAP_MG_PROPS_CORRECT_1">XML_SCHEMAP_MG_PROPS_CORRECT_1</a> = 3074 : 3074 + <a name="XML_SCHEMAP_MG_PROPS_CORRECT_2" id="XML_SCHEMAP_MG_PROPS_CORRECT_2">XML_SCHEMAP_MG_PROPS_CORRECT_2</a> = 3075 : 3075 + <a name="XML_SCHEMAP_SRC_CT_1" id="XML_SCHEMAP_SRC_CT_1">XML_SCHEMAP_SRC_CT_1</a> = 3076 : 3076 + <a name="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3" id="XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3">XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3</a> = 3077 : 3077 + <a name="XML_SCHEMAP_AU_PROPS_CORRECT_2" id="XML_SCHEMAP_AU_PROPS_CORRECT_2">XML_SCHEMAP_AU_PROPS_CORRECT_2</a> = 3078 : 3078 + <a name="XML_SCHEMAP_A_PROPS_CORRECT_2" id="XML_SCHEMAP_A_PROPS_CORRECT_2">XML_SCHEMAP_A_PROPS_CORRECT_2</a> = 3079 } </pre><h3><a name="initGenericErrorDefaultFunc" id="initGenericErrorDefaultFunc"></a>Function: initGenericErrorDefaultFunc</h3><pre class="programlisting">void initGenericErrorDefaultFunc (<a href="libxml-xmlerror.html#xmlGenericErrorFunc">xmlGenericErrorFunc</a> * handler)<br /> </pre><p>Set or reset (if NULL) the default handler for generic errors to the builtin error function.</p> diff --git a/doc/html/libxml-xmlschemas.html b/doc/html/libxml-xmlschemas.html index 364eda1..22fc754 100644 --- a/doc/html/libxml-xmlschemas.html +++ b/doc/html/libxml-xmlschemas.html @@ -19,6 +19,7 @@ The content of this structure is not made public by the API. The content of this structure is not made public by the API. </pre><pre class="programlisting">Typedef <a href="libxml-xmlschemas.html#xmlSchemaValidCtxt">xmlSchemaValidCtxt</a> * <a name="xmlSchemaValidCtxtPtr" id="xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> </pre><pre class="programlisting">Enum <a href="#xmlSchemaValidError">xmlSchemaValidError</a> +</pre><pre class="programlisting">Enum <a href="#xmlSchemaValidOption">xmlSchemaValidOption</a> </pre><pre class="programlisting">void <a href="#xmlSchemaDump">xmlSchemaDump</a> (FILE * output, <br /> <a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)</pre> <pre class="programlisting">void <a href="#xmlSchemaFree">xmlSchemaFree</a> (<a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)</pre> <pre class="programlisting">void <a href="#xmlSchemaFreeParserCtxt">xmlSchemaFreeParserCtxt</a> (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)</pre> @@ -32,7 +33,10 @@ The content of this structure is not made public by the API. <pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> <a href="#xmlSchemaParse">xmlSchemaParse</a> (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)</pre> <pre class="programlisting">void <a href="#xmlSchemaSetParserErrors">xmlSchemaSetParserErrors</a> (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br /> void * ctx)</pre> <pre class="programlisting">void <a href="#xmlSchemaSetValidErrors">xmlSchemaSetValidErrors</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br /> void * ctx)</pre> -<pre class="programlisting">int <a href="#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> instance)</pre> +<pre class="programlisting">int <a href="#xmlSchemaSetValidOptions">xmlSchemaSetValidOptions</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> int options)</pre> +<pre class="programlisting">int <a href="#xmlSchemaValidCtxtGetOptions">xmlSchemaValidCtxtGetOptions</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)</pre> +<pre class="programlisting">int <a href="#xmlSchemaValidateDoc">xmlSchemaValidateDoc</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> doc)</pre> +<pre class="programlisting">int <a href="#xmlSchemaValidateOneElement">xmlSchemaValidateOneElement</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlNodePtr">xmlNodePtr</a> elem)</pre> <pre class="programlisting">int <a href="#xmlSchemaValidateStream">xmlSchemaValidateStream</a> (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br /> <a href="libxml-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br /> <a href="libxml-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br /> void * user_data)</pre> <pre class="programlisting">Function type: <a href="#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> void <a href="#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> (void * ctx, <br /> const char * msg, <br /> ... ...) @@ -60,6 +64,7 @@ void <a href="#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> (v <a href="libxml-dict.html#xmlDictPtr">xmlDictPtr</a> dict void * includes : the includes, this is opaque for now int preserve : whether to free the document + int counter : used to give ononymous components uniqu }</pre><h3><a name="xmlSchemaParserCtxt" id="xmlSchemaParserCtxt">Structure xmlSchemaParserCtxt</a></h3><pre class="programlisting">Structure xmlSchemaParserCtxt<br />struct _xmlSchemaParserCtxt { The content of this structure is not made public by the API. }</pre><h3><a name="xmlSchemaValidCtxt" id="xmlSchemaValidCtxt">Structure xmlSchemaValidCtxt</a></h3><pre class="programlisting">Structure xmlSchemaValidCtxt<br />struct _xmlSchemaValidCtxt { @@ -92,6 +97,9 @@ The content of this structure is not made public by the API. <a name="XML_SCHEMAS_ERR_" id="XML_SCHEMAS_ERR_">XML_SCHEMAS_ERR_</a> = 24 <a name="XML_SCHEMAS_ERR_XXX" id="XML_SCHEMAS_ERR_XXX">XML_SCHEMAS_ERR_XXX</a> = 25 } +</pre><h3>Enum <a name="xmlSchemaValidOption" id="xmlSchemaValidOption">xmlSchemaValidOption</a></h3><pre class="programlisting">Enum xmlSchemaValidOption { + <a name="XML_SCHEMA_VAL_VC_I_CREATE" id="XML_SCHEMA_VAL_VC_I_CREATE">XML_SCHEMA_VAL_VC_I_CREATE</a> = 1 : Default/fixed: create an <a href="libxml-SAX.html#attribute">attribute</a> node * or an element's text node on the instance. * +} </pre><h3><a name="xmlSchemaDump" id="xmlSchemaDump"></a>Function: xmlSchemaDump</h3><pre class="programlisting">void xmlSchemaDump (FILE * output, <br /> <a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br /> </pre><p>Dump a Schema structure.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>output</tt></i>:</span></td><td>the file output</td></tr><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div><h3><a name="xmlSchemaFree" id="xmlSchemaFree"></a>Function: xmlSchemaFree</h3><pre class="programlisting">void xmlSchemaFree (<a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br /> @@ -99,30 +107,36 @@ The content of this structure is not made public by the API. <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a schema structure</td></tr></tbody></table></div><h3><a name="xmlSchemaFreeParserCtxt" id="xmlSchemaFreeParserCtxt"></a>Function: xmlSchemaFreeParserCtxt</h3><pre class="programlisting">void xmlSchemaFreeParserCtxt (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br /> </pre><p>Free the resources associated to the schema parser context</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema parser context</td></tr></tbody></table></div><h3><a name="xmlSchemaFreeValidCtxt" id="xmlSchemaFreeValidCtxt"></a>Function: xmlSchemaFreeValidCtxt</h3><pre class="programlisting">void xmlSchemaFreeValidCtxt (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br /> -</pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaGetParserErrors" id="xmlSchemaGetParserErrors"></a>Function: xmlSchemaGetParserErrors</h3><pre class="programlisting">int xmlSchemaGetParserErrors (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br /> void ** ctx)<br /> +</pre><p>Free the resources associated to the schema validation context</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>the schema validation context</td></tr></tbody></table></div><h3><a name="xmlSchemaGetParserErrors" id="xmlSchemaGetParserErrors"></a>Function: xmlSchemaGetParserErrors</h3><pre class="programlisting">int xmlSchemaGetParserErrors (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br /> void ** ctx)<br /> </pre><p>Get the callback information used to handle errors for a parser context</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a XMl-Schema parser context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of failure, 0 otherwise</td></tr></tbody></table></div><h3><a name="xmlSchemaGetValidErrors" id="xmlSchemaGetValidErrors"></a>Function: xmlSchemaGetValidErrors</h3><pre class="programlisting">int xmlSchemaGetValidErrors (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> * err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> * warn, <br /> void ** ctx)<br /> -</pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaNewDocParserCtxt" id="xmlSchemaNewDocParserCtxt"></a>Function: xmlSchemaNewDocParserCtxt</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> xmlSchemaNewDocParserCtxt (<a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br /> +</pre><p>Get the error and warning callback informations</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a XML-Schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function result</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function result</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context result</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>-1 in case of error and 0 otherwise</td></tr></tbody></table></div><h3><a name="xmlSchemaNewDocParserCtxt" id="xmlSchemaNewDocParserCtxt"></a>Function: xmlSchemaNewDocParserCtxt</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> xmlSchemaNewDocParserCtxt (<a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br /> </pre><p>Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a preparsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlSchemaNewMemParserCtxt" id="xmlSchemaNewMemParserCtxt"></a>Function: xmlSchemaNewMemParserCtxt</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> xmlSchemaNewMemParserCtxt (const char * buffer, <br /> int size)<br /> </pre><p>Create an XML Schemas parse context for that memory buffer expected to contain an XML Schemas file.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>buffer</tt></i>:</span></td><td>a pointer to a char array containing the schemas</td></tr><tr><td><span class="term"><i><tt>size</tt></i>:</span></td><td>the size of the array</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlSchemaNewParserCtxt" id="xmlSchemaNewParserCtxt"></a>Function: xmlSchemaNewParserCtxt</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> xmlSchemaNewParserCtxt (const char * URL)<br /> </pre><p>Create an XML Schemas parse context for that file/resource expected to contain an XML Schemas file.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>URL</tt></i>:</span></td><td>the location of the schema</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the parser context or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlSchemaNewValidCtxt" id="xmlSchemaNewValidCtxt"></a>Function: xmlSchemaNewValidCtxt</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> xmlSchemaNewValidCtxt (<a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> schema)<br /> -</pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaParse" id="xmlSchemaParse"></a>Function: xmlSchemaParse</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> xmlSchemaParse (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br /> +</pre><p>Create an XML Schemas validation context based on the given schema</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>schema</tt></i>:</span></td><td>a precompiled XML Schemas</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the validation context or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlSchemaParse" id="xmlSchemaParse"></a>Function: xmlSchemaParse</h3><pre class="programlisting"><a href="libxml-xmlschemas.html#xmlSchemaPtr">xmlSchemaPtr</a> xmlSchemaParse (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt)<br /> </pre><p>parse a schema definition resource and build an internal XML Shema struture which can be used to validate instances. *WARNING* this interface is highly subject to change</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the internal XML Schema structure built from the resource or NULL in case of error</td></tr></tbody></table></div><h3><a name="xmlSchemaSetParserErrors" id="xmlSchemaSetParserErrors"></a>Function: xmlSchemaSetParserErrors</h3><pre class="programlisting">void xmlSchemaSetParserErrors (<a href="libxml-xmlschemas.html#xmlSchemaParserCtxtPtr">xmlSchemaParserCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br /> void * ctx)<br /> </pre><p>Set the callback functions used to handle errors for a validation context</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error callback</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning callback</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>contextual data for the callbacks</td></tr></tbody></table></div><h3><a name="xmlSchemaSetValidErrors" id="xmlSchemaSetValidErrors"></a>Function: xmlSchemaSetValidErrors</h3><pre class="programlisting">void xmlSchemaSetValidErrors (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityErrorFunc">xmlSchemaValidityErrorFunc</a> err, <br /> <a href="libxml-xmlschemas.html#xmlSchemaValidityWarningFunc">xmlSchemaValidityWarningFunc</a> warn, <br /> void * ctx)<br /> +</pre><p>Set the error and warning callback informations</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>the error function</td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td>the warning function</td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td>the functions context</td></tr></tbody></table></div><h3><a name="xmlSchemaSetValidOptions" id="xmlSchemaSetValidOptions"></a>Function: xmlSchemaSetValidOptions</h3><pre class="programlisting">int xmlSchemaSetValidOptions (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> int options)<br /> </pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>warn</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaValidateDoc" id="xmlSchemaValidateDoc"></a>Function: xmlSchemaValidateDoc</h3><pre class="programlisting">int xmlSchemaValidateDoc (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> instance)<br /> -</pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>instance</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaValidateStream" id="xmlSchemaValidateStream"></a>Function: xmlSchemaValidateStream</h3><pre class="programlisting">int xmlSchemaValidateStream (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br /> <a href="libxml-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br /> <a href="libxml-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br /> void * user_data)<br /> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaValidCtxtGetOptions" id="xmlSchemaValidCtxtGetOptions"></a>Function: xmlSchemaValidCtxtGetOptions</h3><pre class="programlisting">int xmlSchemaValidCtxtGetOptions (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt)<br /> </pre><p></p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaValidityErrorFunc" id="xmlSchemaValidityErrorFunc"></a>Function type: xmlSchemaValidityErrorFunc</h3><pre class="programlisting">Function type: xmlSchemaValidityErrorFunc +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td></td></tr></tbody></table></div><h3><a name="xmlSchemaValidateDoc" id="xmlSchemaValidateDoc"></a>Function: xmlSchemaValidateDoc</h3><pre class="programlisting">int xmlSchemaValidateDoc (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlDocPtr">xmlDocPtr</a> doc)<br /> +</pre><p>Validate a document tree in memory.</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>doc</tt></i>:</span></td><td>a parsed document tree</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div><h3><a name="xmlSchemaValidateOneElement" id="xmlSchemaValidateOneElement"></a>Function: xmlSchemaValidateOneElement</h3><pre class="programlisting">int xmlSchemaValidateOneElement (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlNodePtr">xmlNodePtr</a> elem)<br /> +</pre><p>Validate a branch of a tree, starting with the given @elem.</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>elem</tt></i>:</span></td><td>an element node</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the element and its subtree is valid, a positive error code number otherwise and -1 in case of an internal or API error.</td></tr></tbody></table></div><h3><a name="xmlSchemaValidateStream" id="xmlSchemaValidateStream"></a>Function: xmlSchemaValidateStream</h3><pre class="programlisting">int xmlSchemaValidateStream (<a href="libxml-xmlschemas.html#xmlSchemaValidCtxtPtr">xmlSchemaValidCtxtPtr</a> ctxt, <br /> <a href="libxml-tree.html#xmlParserInputBufferPtr">xmlParserInputBufferPtr</a> input, <br /> <a href="libxml-encoding.html#xmlCharEncoding">xmlCharEncoding</a> enc, <br /> <a href="libxml-tree.html#xmlSAXHandlerPtr">xmlSAXHandlerPtr</a> sax, <br /> void * user_data)<br /> +</pre><p>Validate a document tree in memory.</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctxt</tt></i>:</span></td><td>a schema validation context</td></tr><tr><td><span class="term"><i><tt>input</tt></i>:</span></td><td>the input to use for reading the data</td></tr><tr><td><span class="term"><i><tt>enc</tt></i>:</span></td><td>an optional encoding information</td></tr><tr><td><span class="term"><i><tt>sax</tt></i>:</span></td><td>a SAX handler for the resulting events</td></tr><tr><td><span class="term"><i><tt>user_data</tt></i>:</span></td><td>the context to provide to the SAX handler.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.</td></tr></tbody></table></div><h3><a name="xmlSchemaValidityErrorFunc" id="xmlSchemaValidityErrorFunc"></a>Function type: xmlSchemaValidityErrorFunc</h3><pre class="programlisting">Function type: xmlSchemaValidityErrorFunc void xmlSchemaValidityErrorFunc (void * ctx, <br /> const char * msg, <br /> ... ...) </pre><p></p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>ctx</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>msg</tt></i>:</span></td><td></td></tr><tr><td><span class="term"><i><tt>...</tt></i>:</span></td><td></td></tr></tbody></table></div><br /> <h3><a name="xmlSchemaValidityWarningFunc" id="xmlSchemaValidityWarningFunc"></a>Function type: xmlSchemaValidityWarningFunc</h3><pre class="programlisting">Function type: xmlSchemaValidityWarningFunc diff --git a/doc/html/libxml-xmlstring.html b/doc/html/libxml-xmlstring.html index 47029d9..490df42 100644 --- a/doc/html/libxml-xmlstring.html +++ b/doc/html/libxml-xmlstring.html @@ -50,8 +50,8 @@ A:link, A:visited, A:active { text-decoration: underline } <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>cur</tt></i>:</span></td><td>the input char *</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>the len of @cur</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a new <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * or NULL</td></tr></tbody></table></div><h3><a name="xmlCheckUTF8" id="xmlCheckUTF8"></a>Function: xmlCheckUTF8</h3><pre class="programlisting">int xmlCheckUTF8 (const unsigned char * utf)<br /> </pre><p>Checks @utf for being valid UTF-8. @utf is assumed to be null-terminated. This function is not super-strict, as it will allow longer UTF-8 sequences than necessary. Note that Java is capable of producing these sequences if provoked. Also note, this routine checks for the 4-byte maximum size, but does not check for 0x10ffff maximum value.</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>Pointer to putative UTF-8 encoded string.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>value: true if @utf is valid.</td></tr></tbody></table></div><h3><a name="xmlGetUTF8Char" id="xmlGetUTF8Char"></a>Function: xmlGetUTF8Char</h3><pre class="programlisting">int xmlGetUTF8Char (const unsigned char * utf, <br /> int * len)<br /> -</pre><p>Read one UTF8 Char from @utf</p> -<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>a pointer to @bytes len</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the char value or -1 in case of error, and updates *len with the number of bytes consumed</td></tr></tbody></table></div><h3><a name="xmlStrEqual" id="xmlStrEqual"></a>Function: xmlStrEqual</h3><pre class="programlisting">int xmlStrEqual (const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * str1, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * str2)<br /> +</pre><p>Read the first UTF8 character from @utf</p> +<div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>utf</tt></i>:</span></td><td>a sequence of UTF-8 encoded bytes</td></tr><tr><td><span class="term"><i><tt>len</tt></i>:</span></td><td>a pointer to the minimum number of bytes present in the sequence. This is used to assure the next character is completely contained within the sequence.</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the char value or -1 in case of error, and sets *len to the actual number of bytes consumed (0 in case of error)</td></tr></tbody></table></div><h3><a name="xmlStrEqual" id="xmlStrEqual"></a>Function: xmlStrEqual</h3><pre class="programlisting">int xmlStrEqual (const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * str1, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * str2)<br /> </pre><p>Check if both string are equal of have same content Should be a bit more readable and faster than xmlStrEqual()</p> <div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>str1</tt></i>:</span></td><td>the first <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>str2</tt></i>:</span></td><td>the second <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> *</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>1 if they are equal, 0 if they are different</td></tr></tbody></table></div><h3><a name="xmlStrPrintf" id="xmlStrPrintf"></a>Function: xmlStrPrintf</h3><pre class="programlisting">int xmlStrPrintf (<a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * buf, <br /> int len, <br /> const <a href="libxml-xmlstring.html#xmlChar">xmlChar</a> * msg, <br /> ... ...)<br /> </pre><p>Formats @msg and places result into @buf.</p> diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index adbb9a8..e618c27 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -628,6 +628,7 @@ <summary>minimal HTTP implementation</summary> <description>minimal HTTP implementation allowing to fetch resources like external subset. </description> <author>Daniel Veillard </author> + <exports symbol='xmlNanoHTTPRead' type='function'/> <exports symbol='xmlNanoHTTPSave' type='function'/> <exports symbol='xmlNanoHTTPRedir' type='function'/> <exports symbol='xmlNanoHTTPAuthHeader' type='function'/> @@ -637,7 +638,7 @@ <exports symbol='xmlNanoHTTPClose' type='function'/> <exports symbol='xmlNanoHTTPCleanup' type='function'/> <exports symbol='xmlNanoHTTPMethod' type='function'/> - <exports symbol='xmlNanoHTTPRead' type='function'/> + <exports symbol='xmlNanoHTTPContentLength' type='function'/> <exports symbol='xmlNanoHTTPOpen' type='function'/> <exports symbol='xmlNanoHTTPOpenRedir' type='function'/> <exports symbol='xmlNanoHTTPMethodRedir' type='function'/> @@ -1045,7 +1046,7 @@ <exports symbol='XML_SCHEMAS_ANY_STRICT' type='macro'/> <exports symbol='XML_SCHEMAS_QUALIF_ELEM' type='macro'/> <exports symbol='XML_SCHEMAS_TYPE_VARIETY_LIST' type='macro'/> - <exports symbol='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' type='macro'/> <exports symbol='XML_SCHEMAS_INCLUDING_CONVERT_NS' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_USE_PROHIBITED' type='macro'/> @@ -1053,6 +1054,7 @@ <exports symbol='XML_SCHEMAS_FACET_UNKNOWN' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_INTERNAL_RESOLVED' type='macro'/> <exports symbol='XML_SCHEMAS_WILDCARD_COMPLETE' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' type='macro'/> <exports symbol='XML_SCHEMAS_TYPE_FINAL_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_FIXED' type='macro'/> @@ -1060,9 +1062,11 @@ <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ATOMIC' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_USE_OPTIONAL' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_NSDEFAULT' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_FINAL_DEFAULT' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' type='macro'/> <exports symbol='XML_SCHEMAS_ANYATTR_STRICT' type='macro'/> <exports symbol='XML_SCHEMAS_TYPE_VARIETY_ABSENT' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION' type='macro'/> + <exports symbol='XML_SCHEMAS_ATTRGROUP_MARKED' type='macro'/> <exports symbol='XML_SCHEMAS_FACET_PRESERVE' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_BLOCK_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION' type='macro'/> @@ -1070,6 +1074,7 @@ <exports symbol='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_ANYATTR_LAX' type='macro'/> <exports symbol='XML_SCHEMAS_TYPE_GLOBAL' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_ABSTRACT' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_FIXED' type='macro'/> <exports symbol='XML_SCHEMAS_ANY_SKIP' type='macro'/> <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_LIST' type='macro'/> @@ -1082,15 +1087,17 @@ <exports symbol='XML_SCHEMAS_TYPE_FINAL_RESTRICTION' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_FINAL_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_FINAL_ABSENT' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_TOPLEVEL' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_ABSTRACT' type='macro'/> <exports symbol='XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION' type='macro'/> <exports symbol='XML_SCHEMAS_TYPE_FINAL_UNION' type='macro'/> - <exports symbol='XML_SCHEMAS_TYPE_FINAL_DEFAULT' type='macro'/> - <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_UNION' type='macro'/> <exports symbol='XML_SCHEMAS_ATTR_GLOBAL' type='macro'/> + <exports symbol='XML_SCHEMAS_FINAL_DEFAULT_UNION' type='macro'/> + <exports symbol='XML_SCHEMAS_ELEM_BLOCK_RESTRICTION' type='macro'/> <exports symbol='XML_SCHEMAS_FACET_REPLACE' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_DEFAULT' type='macro'/> + <exports symbol='XML_SCHEMAS_TYPE_MARKED' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_BLOCK_ABSENT' type='macro'/> <exports symbol='XML_SCHEMAS_ATTRGROUP_GLOBAL' type='macro'/> <exports symbol='XML_SCHEMAS_ELEM_REF' type='macro'/> @@ -1763,16 +1770,18 @@ <exports symbol='xmlAutomataNewCounter' type='function'/> <exports symbol='xmlAutomataGetInitState' type='function'/> <exports symbol='xmlAutomataNewTransition2' type='function'/> + <exports symbol='xmlAutomataNewState' type='function'/> <exports symbol='xmlAutomataNewCountTrans' type='function'/> + <exports symbol='xmlAutomataNewOnceTrans2' type='function'/> <exports symbol='xmlAutomataNewAllTrans' type='function'/> - <exports symbol='xmlAutomataNewState' type='function'/> + <exports symbol='xmlAutomataNewOnceTrans' type='function'/> <exports symbol='xmlAutomataNewCounterTrans' type='function'/> <exports symbol='xmlAutomataCompile' type='function'/> <exports symbol='xmlNewAutomata' type='function'/> <exports symbol='xmlAutomataNewEpsilon' type='function'/> - <exports symbol='xmlAutomataNewCountedTrans' type='function'/> + <exports symbol='xmlAutomataNewCountTrans2' type='function'/> <exports symbol='xmlAutomataSetFinalState' type='function'/> - <exports symbol='xmlAutomataNewOnceTrans' type='function'/> + <exports symbol='xmlAutomataNewCountedTrans' type='function'/> <exports symbol='xmlAutomataNewTransition' type='function'/> <exports symbol='xmlAutomataIsDeterminist' type='function'/> </file> @@ -1837,6 +1846,7 @@ <exports symbol='XML_IO_EISCONN' type='enum'/> <exports symbol='XML_ERR_GT_REQUIRED' type='enum'/> <exports symbol='XML_SCHEMAP_FACET_NO_VALUE' type='enum'/> + <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_1' type='enum'/> <exports symbol='XML_HTTP_UNKNOWN_HOST' type='enum'/> <exports symbol='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' type='enum'/> <exports symbol='XML_ERR_ENTITY_NOT_FINISHED' type='enum'/> @@ -1866,7 +1876,7 @@ <exports symbol='XML_SCHEMAP_FAILED_BUILD_IMPORT' type='enum'/> <exports symbol='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' type='enum'/> <exports symbol='XML_SCHEMAP_REGEXP_INVALID' type='enum'/> - <exports symbol='XML_XPTR_CHILDSEQ_START' type='enum'/> + <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' type='enum'/> <exports symbol='XML_C14N_CREATE_STACK' type='enum'/> <exports symbol='XML_WAR_LANG_VALUE' type='enum'/> <exports symbol='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' type='enum'/> @@ -1874,6 +1884,7 @@ <exports symbol='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' type='enum'/> <exports symbol='XML_XPATH_INVALID_PREDICATE_ERROR' type='enum'/> <exports symbol='XML_ERR_EXT_SUBSET_NOT_FINISHED' type='enum'/> + <exports symbol='XML_SCHEMAV_CVC_AU' type='enum'/> <exports symbol='XML_RNGP_PARENTREF_NAME_INVALID' type='enum'/> <exports symbol='XML_FROM_DTD' type='enum'/> <exports symbol='XML_SCHEMAV_CONSTRUCT' type='enum'/> @@ -1890,7 +1901,7 @@ <exports symbol='XML_XINCLUDE_FRAGMENT_ID' type='enum'/> <exports symbol='XML_WAR_NS_URI' type='enum'/> <exports symbol='XML_IO_EMLINK' type='enum'/> - <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' type='enum'/> + <exports symbol='XML_SCHEMAP_SRC_CT_1' type='enum'/> <exports symbol='XML_ERR_NMTOKEN_REQUIRED' type='enum'/> <exports symbol='XML_RNGP_ANYNAME_ATTR_ANCESTOR' type='enum'/> <exports symbol='XML_ERR_ENTITY_IS_EXTERNAL' type='enum'/> @@ -1933,6 +1944,7 @@ <exports symbol='XML_DTD_INVALID_DEFAULT' type='enum'/> <exports symbol='XML_DTD_UNKNOWN_ELEM' type='enum'/> <exports symbol='XML_SCHEMAP_REDEFINED_TYPE' type='enum'/> + <exports symbol='XML_XPTR_EXTRA_OBJECTS' type='enum'/> <exports symbol='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' type='enum'/> <exports symbol='XML_SCHEMAV_NOTYPE' type='enum'/> <exports symbol='XML_SCHEMAP_UNKNOWN_FACET_CHILD' type='enum'/> @@ -1962,6 +1974,7 @@ <exports symbol='XML_RNGP_PAT_START_LIST' type='enum'/> <exports symbol='XML_ERR_LT_REQUIRED' type='enum'/> <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' type='enum'/> + <exports symbol='XML_SCHEMAP_AU_PROPS_CORRECT_2' type='enum'/> <exports symbol='XML_ERR_ATTLIST_NOT_STARTED' type='enum'/> <exports symbol='XML_RNGP_ELEMENT_NAME' type='enum'/> <exports symbol='XML_ERR_PCDATA_REQUIRED' type='enum'/> @@ -2028,6 +2041,7 @@ <exports symbol='XML_IO_ENFILE' type='enum'/> <exports symbol='XML_RNGP_PARENTREF_CREATE_FAILED' type='enum'/> <exports symbol='XML_ERR_ENTITY_IS_PARAMETER' type='enum'/> + <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' type='enum'/> <exports symbol='XML_SCHEMAP_UNKNOWN_BASE_TYPE' type='enum'/> <exports symbol='XML_ERR_RESERVED_XML_NAME' type='enum'/> <exports symbol='XML_SCHEMAP_SRC_IMPORT_3_2' type='enum'/> @@ -2038,6 +2052,7 @@ <exports symbol='XML_ERR_CHARREF_AT_EOF' type='enum'/> <exports symbol='XML_IO_ENOMEM' type='enum'/> <exports symbol='XML_IO_ENOSPC' type='enum'/> + <exports symbol='XML_XPTR_CHILDSEQ_START' type='enum'/> <exports symbol='XML_RNGP_ATTR_CONFLICT' type='enum'/> <exports symbol='XML_RNGP_TYPE_VALUE' type='enum'/> <exports symbol='XML_FROM_REGEXP' type='enum'/> @@ -2064,7 +2079,7 @@ <exports symbol='XML_ERR_ENTITYREF_NO_NAME' type='enum'/> <exports symbol='XML_DTD_ID_FIXED' type='enum'/> <exports symbol='XML_SCHEMAP_COS_ST_RESTRICTS_2_3_2_2' type='enum'/> - <exports symbol='XML_XPTR_EXTRA_OBJECTS' type='enum'/> + <exports symbol='XML_SCHEMAP_A_PROPS_CORRECT_2' type='enum'/> <exports symbol='XML_XINCLUDE_NO_HREF' type='enum'/> <exports symbol='XML_XPATH_INVALID_OPERAND' type='enum'/> <exports symbol='XML_IO_ENOEXEC' type='enum'/> @@ -2072,6 +2087,7 @@ <exports symbol='XML_XINCLUDE_HREF_URI' type='enum'/> <exports symbol='XML_ERR_EXTRA_CONTENT' type='enum'/> <exports symbol='XML_ERR_EXT_ENTITY_STANDALONE' type='enum'/> + <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_1' type='enum'/> <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_4' type='enum'/> <exports symbol='XML_SCHEMAP_FAILED_PARSE' type='enum'/> <exports symbol='XML_RNGP_REF_CYCLE' type='enum'/> @@ -2137,6 +2153,7 @@ <exports symbol='XML_SCHEMAV_NOTTOPLEVEL' type='enum'/> <exports symbol='XML_IO_ENOENT' type='enum'/> <exports symbol='XML_ERR_NO_DTD' type='enum'/> + <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' type='enum'/> <exports symbol='XML_FROM_C14N' type='enum'/> <exports symbol='XML_FROM_XSLT' type='enum'/> <exports symbol='XML_RNGP_PAT_LIST_ATTR' type='enum'/> @@ -2163,6 +2180,7 @@ <exports symbol='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' type='enum'/> <exports symbol='XML_SCHEMAP_SRC_UNION_MEMBERTYPES_OR_SIMPLETYPES' type='enum'/> <exports symbol='XML_IO_ENOTTY' type='enum'/> + <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' type='enum'/> <exports symbol='XML_RNGP_EMPTY_CONTENT' type='enum'/> <exports symbol='XML_IO_EALREADY' type='enum'/> <exports symbol='XML_DTD_NO_DTD' type='enum'/> @@ -2208,6 +2226,7 @@ <exports symbol='XML_XPTR_SYNTAX_ERROR' type='enum'/> <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_5' type='enum'/> <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_4' type='enum'/> + <exports symbol='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' type='enum'/> <exports symbol='XML_SCHEMAP_E_PROPS_CORRECT_6' type='enum'/> <exports symbol='XML_RNGP_ATTRIBUTE_EMPTY' type='enum'/> <exports symbol='XML_SCHEMAV_ISABSTRACT' type='enum'/> @@ -2269,6 +2288,7 @@ <exports symbol='XML_RNGP_GRAMMAR_NO_START' type='enum'/> <exports symbol='XML_RNGP_VALUE_NO_CONTENT' type='enum'/> <exports symbol='XML_SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD' type='enum'/> + <exports symbol='XML_SCHEMAV_CVC_TYPE_1' type='enum'/> <exports symbol='XML_IO_EAFNOSUPPORT' type='enum'/> <exports symbol='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' type='enum'/> <exports symbol='XML_SCHEMAV_ELEMENT_CONTENT' type='enum'/> @@ -2330,6 +2350,7 @@ <exports symbol='XML_DTD_ELEM_REDEFINED' type='enum'/> <exports symbol='XML_SCHEMAV_NOTNILLABLE' type='enum'/> <exports symbol='XML_SCHEMAP_ELEM_DEFAULT_FIXED' type='enum'/> + <exports symbol='XML_SCHEMAV_CVC_TYPE_2' type='enum'/> <exports symbol='XML_SCHEMAP_REDEFINED_ELEMENT' type='enum'/> <exports symbol='XML_RNGP_REF_NO_DEF' type='enum'/> <exports symbol='XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED' type='enum'/> @@ -2354,7 +2375,7 @@ <exports symbol='XML_DTD_NOTATION_VALUE' type='enum'/> <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_2' type='enum'/> <exports symbol='XML_ERR_INVALID_ENCODING' type='enum'/> - <exports symbol='XML_SCHEMAP_ST_PROPS_CORRECT_1' type='enum'/> + <exports symbol='XML_SCHEMAP_NOT_SCHEMA' type='enum'/> <exports symbol='XML_XPATH_INVALID_ARITY' type='enum'/> <exports symbol='XML_RNGP_EXCEPT_MISSING' type='enum'/> <exports symbol='XML_SCHEMAP_SRC_INCLUDE' type='enum'/> @@ -2370,6 +2391,7 @@ <exports symbol='XML_RNGP_DATA_CONTENT' type='enum'/> <exports symbol='XML_ERR_STRING_NOT_STARTED' type='enum'/> <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' type='enum'/> + <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' type='enum'/> <exports symbol='XML_TREE_INVALID_DEC' type='enum'/> <exports symbol='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' type='enum'/> <exports symbol='XML_RNGP_EXCEPT_MULTIPLE' type='enum'/> @@ -2431,7 +2453,7 @@ <exports symbol='XML_DTD_NO_DOC' type='enum'/> <exports symbol='XML_IO_EEXIST' type='enum'/> <exports symbol='XML_SCHEMAP_CT_PROPS_CORRECT_1' type='enum'/> - <exports symbol='XML_SCHEMAP_NOT_SCHEMA' type='enum'/> + <exports symbol='XML_SCHEMAP_MG_PROPS_CORRECT_2' type='enum'/> <exports symbol='XML_FROM_SCHEMASV' type='enum'/> <exports symbol='XML_FROM_SCHEMASP' type='enum'/> <exports symbol='XML_SCHEMAV_CVC_ELT_3_1' type='enum'/> @@ -2688,6 +2710,7 @@ <exports symbol='XML_SCHEMAS_ERR_EXTRACONTENT' type='enum'/> <exports symbol='XML_SCHEMAS_ERR_NOTDETERMINIST' type='enum'/> <exports symbol='XML_SCHEMAS_ERR_NOTSIMPLE' type='enum'/> + <exports symbol='XML_SCHEMA_VAL_VC_I_CREATE' type='enum'/> <exports symbol='XML_SCHEMAS_ERR_INTERNAL' type='enum'/> <exports symbol='XML_SCHEMAS_ERR_UNDECLAREDELEM' type='enum'/> <exports symbol='XML_SCHEMAS_ERR_WRONGELEM' type='enum'/> @@ -2701,6 +2724,7 @@ <exports symbol='XML_SCHEMAS_ERR_NOTYPE' type='enum'/> <exports symbol='xmlSchemaPtr' type='typedef'/> <exports symbol='xmlSchemaParserCtxt' type='typedef'/> + <exports symbol='xmlSchemaValidOption' type='typedef'/> <exports symbol='xmlSchemaValidCtxtPtr' type='typedef'/> <exports symbol='xmlSchemaParserCtxtPtr' type='typedef'/> <exports symbol='xmlSchema' type='typedef'/> @@ -2708,21 +2732,24 @@ <exports symbol='xmlSchemaValidCtxt' type='typedef'/> <exports symbol='xmlSchemaValidateStream' type='function'/> <exports symbol='xmlSchemaSetParserErrors' type='function'/> + <exports symbol='xmlSchemaValidateOneElement' type='function'/> <exports symbol='xmlSchemaValidityWarningFunc' type='function'/> <exports symbol='xmlSchemaValidateDoc' type='function'/> <exports symbol='xmlSchemaNewDocParserCtxt' type='function'/> <exports symbol='xmlSchemaFree' type='function'/> <exports symbol='xmlSchemaDump' type='function'/> + <exports symbol='xmlSchemaSetValidOptions' type='function'/> <exports symbol='xmlSchemaParse' type='function'/> <exports symbol='xmlSchemaNewMemParserCtxt' type='function'/> <exports symbol='xmlSchemaFreeParserCtxt' type='function'/> + <exports symbol='xmlSchemaValidityErrorFunc' type='function'/> <exports symbol='xmlSchemaFreeValidCtxt' type='function'/> <exports symbol='xmlSchemaGetParserErrors' type='function'/> <exports symbol='xmlSchemaNewValidCtxt' type='function'/> <exports symbol='xmlSchemaSetValidErrors' type='function'/> <exports symbol='xmlSchemaGetValidErrors' type='function'/> <exports symbol='xmlSchemaNewParserCtxt' type='function'/> - <exports symbol='xmlSchemaValidityErrorFunc' type='function'/> + <exports symbol='xmlSchemaValidCtxtGetOptions' type='function'/> </file> <file name='xmlschemastypes'> <summary>implementation of XML Schema Datatypes</summary> @@ -3708,6 +3735,9 @@ <macro name='XML_SCHEMAS_ATTRGROUP_GLOBAL' file='schemasInternals'> <info>The attribute wildcard has been already builded.</info> </macro> + <macro name='XML_SCHEMAS_ATTRGROUP_MARKED' file='schemasInternals'> + <info>Marks the attr group as marked; used for circular checks.</info> + </macro> <macro name='XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED' file='schemasInternals'> <info>The attribute wildcard has been already builded.</info> </macro> @@ -3717,6 +3747,7 @@ <macro name='XML_SCHEMAS_ATTR_GLOBAL' file='schemasInternals'> </macro> <macro name='XML_SCHEMAS_ATTR_INTERNAL_RESOLVED' file='schemasInternals'> + <info>this is set when the "type" and "ref" references have been resolved.</info> </macro> <macro name='XML_SCHEMAS_ATTR_NSDEFAULT' file='schemasInternals'> <info>allow elements in no namespace</info> @@ -3819,6 +3850,17 @@ <macro name='XML_SCHEMAS_QUALIF_ELEM' file='schemasInternals'> <info>the schema requires qualified elements</info> </macro> + <macro name='XML_SCHEMAS_TYPE_ABSTRACT' file='schemasInternals'> + <info>the simple/complexType is abstract.</info> + </macro> + <macro name='XML_SCHEMAS_TYPE_BLOCK_DEFAULT' file='schemasInternals'> + <info>the complexType did not specify 'block' so use the default of the <schema> item.</info> + </macro> + <macro name='XML_SCHEMAS_TYPE_BLOCK_EXTENSION' file='schemasInternals'> + <info>the complexType has a 'block' of "extension".</info> + </macro> + <macro name='XML_SCHEMAS_TYPE_BLOCK_RESTRICTION' file='schemasInternals'> + </macro> <macro name='XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE' file='schemasInternals'> </macro> <macro name='XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION' file='schemasInternals'> @@ -3844,6 +3886,8 @@ <macro name='XML_SCHEMAS_TYPE_GLOBAL' file='schemasInternals'> <info>the type is global</info> </macro> + <macro name='XML_SCHEMAS_TYPE_MARKED' file='schemasInternals'> + </macro> <macro name='XML_SCHEMAS_TYPE_MIXED' file='schemasInternals'> <info>the element content type is mixed</info> </macro> @@ -4661,9 +4705,11 @@ <enum name='XML_SCHEMAP_ATTRFORMDEFAULT_VALUE' file='xmlerror' value='1701' type='xmlParserErrors' info='1701'/> <enum name='XML_SCHEMAP_ATTRGRP_NONAME_NOREF' file='xmlerror' value='1702' type='xmlParserErrors' info='1702'/> <enum name='XML_SCHEMAP_ATTR_NONAME_NOREF' file='xmlerror' value='1703' type='xmlParserErrors' info='1703'/> + <enum name='XML_SCHEMAP_AU_PROPS_CORRECT_2' file='xmlerror' value='3078' type='xmlParserErrors' info='3078'/> + <enum name='XML_SCHEMAP_A_PROPS_CORRECT_2' file='xmlerror' value='3079' type='xmlParserErrors'/> <enum name='XML_SCHEMAP_COMPLEXTYPE_NONAME_NOREF' file='xmlerror' value='1704' type='xmlParserErrors' info='1704'/> - <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_1' file='xmlerror' value='3063' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_3' file='xmlerror' value='1800' type='xmlParserErrors' info='1799'/> + <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_1' file='xmlerror' value='3063' type='xmlParserErrors' info='3063'/> + <enum name='XML_SCHEMAP_COS_CT_EXTENDS_1_3' file='xmlerror' value='1800' type='xmlParserErrors' info='1800'/> <enum name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_1' file='xmlerror' value='3031' type='xmlParserErrors' info='3031'/> <enum name='XML_SCHEMAP_COS_ST_DERIVED_OK_2_2' file='xmlerror' value='3032' type='xmlParserErrors' info='3032'/> <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_1_1' file='xmlerror' value='3011' type='xmlParserErrors' info='3011'/> @@ -4686,25 +4732,26 @@ <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_3' file='xmlerror' value='3028' type='xmlParserErrors' info='3028'/> <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_4' file='xmlerror' value='3029' type='xmlParserErrors' info='3029'/> <enum name='XML_SCHEMAP_COS_ST_RESTRICTS_3_3_2_5' file='xmlerror' value='3030' type='xmlParserErrors' info='3030'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_1' file='xmlerror' value='3058' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' file='xmlerror' value='3059' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' file='xmlerror' value='3060' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' file='xmlerror' value='3061' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_1' file='xmlerror' value='1782' type='xmlParserErrors' info='1781'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_2' file='xmlerror' value='1783' type='xmlParserErrors' info='1782'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_3' file='xmlerror' value='1784' type='xmlParserErrors' info='1783'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_4' file='xmlerror' value='1785' type='xmlParserErrors' info='1784'/> - <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_5' file='xmlerror' value='1786' type='xmlParserErrors' info='1785'/> - <enum name='XML_SCHEMAP_CVC_SIMPLE_TYPE' file='xmlerror' value='3062' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_DEF_AND_PREFIX' file='xmlerror' value='1768' type='xmlParserErrors' info='1767'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' file='xmlerror' value='1787' type='xmlParserErrors' info='1786'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' file='xmlerror' value='1788' type='xmlParserErrors' info='1787'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' file='xmlerror' value='1789' type='xmlParserErrors' info='1788'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' file='xmlerror' value='1790' type='xmlParserErrors' info='1789'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' file='xmlerror' value='1791' type='xmlParserErrors' info='1790'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' file='xmlerror' value='1797' type='xmlParserErrors' info='1796'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' file='xmlerror' value='1798' type='xmlParserErrors' info='1797'/> - <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' file='xmlerror' value='1799' type='xmlParserErrors' info='1798'/> + <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_1' file='xmlerror' value='3058' type='xmlParserErrors' info='3058'/> + <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_1' file='xmlerror' value='3059' type='xmlParserErrors' info='3059'/> + <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1' file='xmlerror' value='3060' type='xmlParserErrors' info='3060'/> + <enum name='XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2' file='xmlerror' value='3061' type='xmlParserErrors' info='3061'/> + <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_1' file='xmlerror' value='1782' type='xmlParserErrors' info='1782'/> + <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_2' file='xmlerror' value='1783' type='xmlParserErrors' info='1783'/> + <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_3' file='xmlerror' value='1784' type='xmlParserErrors' info='1784'/> + <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_4' file='xmlerror' value='1785' type='xmlParserErrors' info='1785'/> + <enum name='XML_SCHEMAP_CT_PROPS_CORRECT_5' file='xmlerror' value='1786' type='xmlParserErrors' info='1786'/> + <enum name='XML_SCHEMAP_CVC_SIMPLE_TYPE' file='xmlerror' value='3062' type='xmlParserErrors' info='3062'/> + <enum name='XML_SCHEMAP_DEF_AND_PREFIX' file='xmlerror' value='1768' type='xmlParserErrors' info='1768'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1' file='xmlerror' value='1787' type='xmlParserErrors' info='1787'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1' file='xmlerror' value='1788' type='xmlParserErrors' info='1788'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2' file='xmlerror' value='1789' type='xmlParserErrors' info='1789'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3' file='xmlerror' value='3077' type='xmlParserErrors' info='3077'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2' file='xmlerror' value='1790' type='xmlParserErrors' info='1790'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3' file='xmlerror' value='1791' type='xmlParserErrors' info='1791'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1' file='xmlerror' value='1797' type='xmlParserErrors' info='1797'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2' file='xmlerror' value='1798' type='xmlParserErrors' info='1798'/> + <enum name='XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3' file='xmlerror' value='1799' type='xmlParserErrors' info='1799'/> <enum name='XML_SCHEMAP_ELEMFORMDEFAULT_VALUE' file='xmlerror' value='1705' type='xmlParserErrors' info='1705'/> <enum name='XML_SCHEMAP_ELEM_DEFAULT_FIXED' file='xmlerror' value='1755' type='xmlParserErrors' info='1755'/> <enum name='XML_SCHEMAP_ELEM_NONAME_NOREF' file='xmlerror' value='1706' type='xmlParserErrors' info='1706'/> @@ -4716,20 +4763,20 @@ <enum name='XML_SCHEMAP_E_PROPS_CORRECT_6' file='xmlerror' value='3049' type='xmlParserErrors' info='3049'/> <enum name='XML_SCHEMAP_FACET_NO_VALUE' file='xmlerror' value='1708' type='xmlParserErrors' info='1708'/> <enum name='XML_SCHEMAP_FAILED_BUILD_IMPORT' file='xmlerror' value='1709' type='xmlParserErrors' info='1709'/> - <enum name='XML_SCHEMAP_FAILED_LOAD' file='xmlerror' value='1757' type='xmlParserErrors' info='1756'/> - <enum name='XML_SCHEMAP_FAILED_PARSE' file='xmlerror' value='1766' type='xmlParserErrors' info='1765'/> + <enum name='XML_SCHEMAP_FAILED_LOAD' file='xmlerror' value='1757' type='xmlParserErrors' info='1757'/> + <enum name='XML_SCHEMAP_FAILED_PARSE' file='xmlerror' value='1766' type='xmlParserErrors' info='1766'/> <enum name='XML_SCHEMAP_GROUP_NONAME_NOREF' file='xmlerror' value='1710' type='xmlParserErrors' info='1710'/> <enum name='XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI' file='xmlerror' value='1711' type='xmlParserErrors' info='1711'/> <enum name='XML_SCHEMAP_IMPORT_REDEFINE_NSNAME' file='xmlerror' value='1712' type='xmlParserErrors' info='1712'/> <enum name='XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI' file='xmlerror' value='1713' type='xmlParserErrors' info='1713'/> - <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' file='xmlerror' value='1770' type='xmlParserErrors' info='1769'/> - <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' file='xmlerror' value='1771' type='xmlParserErrors' info='1770'/> - <enum name='XML_SCHEMAP_INTERNAL' file='xmlerror' value='3069' type='xmlParserErrors' info='non-W3C'/> - <enum name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' file='xmlerror' value='1793' type='xmlParserErrors' info='1792'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_COMBINATION' file='xmlerror' value='1777' type='xmlParserErrors' info='1776'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' file='xmlerror' value='1778' type='xmlParserErrors' info='1777'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_NAME' file='xmlerror' value='1780' type='xmlParserErrors' info='1779'/> - <enum name='XML_SCHEMAP_INVALID_ATTR_USE' file='xmlerror' value='1774' type='xmlParserErrors' info='1773'/> + <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI' file='xmlerror' value='1770' type='xmlParserErrors' info='1770'/> + <enum name='XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI' file='xmlerror' value='1771' type='xmlParserErrors' info='1771'/> + <enum name='XML_SCHEMAP_INTERNAL' file='xmlerror' value='3069' type='xmlParserErrors' info='3069 non-W3C'/> + <enum name='XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE' file='xmlerror' value='1793' type='xmlParserErrors' info='1793'/> + <enum name='XML_SCHEMAP_INVALID_ATTR_COMBINATION' file='xmlerror' value='1777' type='xmlParserErrors' info='1777'/> + <enum name='XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION' file='xmlerror' value='1778' type='xmlParserErrors' info='1778'/> + <enum name='XML_SCHEMAP_INVALID_ATTR_NAME' file='xmlerror' value='1780' type='xmlParserErrors' info='1780'/> + <enum name='XML_SCHEMAP_INVALID_ATTR_USE' file='xmlerror' value='1774' type='xmlParserErrors' info='1774'/> <enum name='XML_SCHEMAP_INVALID_BOOLEAN' file='xmlerror' value='1714' type='xmlParserErrors' info='1714'/> <enum name='XML_SCHEMAP_INVALID_ENUM' file='xmlerror' value='1715' type='xmlParserErrors' info='1715'/> <enum name='XML_SCHEMAP_INVALID_FACET' file='xmlerror' value='1716' type='xmlParserErrors' info='1716'/> @@ -4738,28 +4785,30 @@ <enum name='XML_SCHEMAP_INVALID_MINOCCURS' file='xmlerror' value='1719' type='xmlParserErrors' info='1719'/> <enum name='XML_SCHEMAP_INVALID_REF_AND_SUBTYPE' file='xmlerror' value='1720' type='xmlParserErrors' info='1720'/> <enum name='XML_SCHEMAP_INVALID_WHITE_SPACE' file='xmlerror' value='1721' type='xmlParserErrors' info='1721'/> - <enum name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' file='xmlerror' value='1779' type='xmlParserErrors' info='1778'/> + <enum name='XML_SCHEMAP_MG_PROPS_CORRECT_1' file='xmlerror' value='3074' type='xmlParserErrors' info='3074'/> + <enum name='XML_SCHEMAP_MG_PROPS_CORRECT_2' file='xmlerror' value='3075' type='xmlParserErrors' info='3075'/> + <enum name='XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD' file='xmlerror' value='1779' type='xmlParserErrors' info='1779'/> <enum name='XML_SCHEMAP_NOATTR_NOREF' file='xmlerror' value='1722' type='xmlParserErrors' info='1722'/> - <enum name='XML_SCHEMAP_NOROOT' file='xmlerror' value='1759' type='xmlParserErrors' info='1758'/> + <enum name='XML_SCHEMAP_NOROOT' file='xmlerror' value='1759' type='xmlParserErrors' info='1759'/> <enum name='XML_SCHEMAP_NOTATION_NO_NAME' file='xmlerror' value='1723' type='xmlParserErrors' info='1723'/> - <enum name='XML_SCHEMAP_NOTHING_TO_PARSE' file='xmlerror' value='1758' type='xmlParserErrors' info='1757'/> + <enum name='XML_SCHEMAP_NOTHING_TO_PARSE' file='xmlerror' value='1758' type='xmlParserErrors' info='1758'/> <enum name='XML_SCHEMAP_NOTYPE_NOREF' file='xmlerror' value='1724' type='xmlParserErrors' info='1724'/> - <enum name='XML_SCHEMAP_NOT_DETERMINISTIC' file='xmlerror' value='3070' type='xmlParserErrors' info=' non-W3C'/> - <enum name='XML_SCHEMAP_NOT_SCHEMA' file='xmlerror' value='1772' type='xmlParserErrors' info='1771'/> + <enum name='XML_SCHEMAP_NOT_DETERMINISTIC' file='xmlerror' value='3070' type='xmlParserErrors' info='3070 non-W3C'/> + <enum name='XML_SCHEMAP_NOT_SCHEMA' file='xmlerror' value='1772' type='xmlParserErrors' info='1772'/> <enum name='XML_SCHEMAP_NO_XMLNS' file='xmlerror' value='3056' type='xmlParserErrors' info='3056'/> <enum name='XML_SCHEMAP_NO_XSI' file='xmlerror' value='3057' type='xmlParserErrors' info='3057'/> <enum name='XML_SCHEMAP_PREFIX_UNDEFINED' file='xmlerror' value='1700' type='xmlParserErrors'/> <enum name='XML_SCHEMAP_P_PROPS_CORRECT_1' file='xmlerror' value='3042' type='xmlParserErrors' info='3042'/> <enum name='XML_SCHEMAP_P_PROPS_CORRECT_2_1' file='xmlerror' value='3043' type='xmlParserErrors' info='3043'/> <enum name='XML_SCHEMAP_P_PROPS_CORRECT_2_2' file='xmlerror' value='3044' type='xmlParserErrors' info='3044'/> - <enum name='XML_SCHEMAP_RECURSIVE' file='xmlerror' value='1775' type='xmlParserErrors' info='1774'/> - <enum name='XML_SCHEMAP_REDEFINED_ATTR' file='xmlerror' value='1764' type='xmlParserErrors' info='1763'/> - <enum name='XML_SCHEMAP_REDEFINED_ATTRGROUP' file='xmlerror' value='1763' type='xmlParserErrors' info='1762'/> - <enum name='XML_SCHEMAP_REDEFINED_ELEMENT' file='xmlerror' value='1762' type='xmlParserErrors' info='1761'/> - <enum name='XML_SCHEMAP_REDEFINED_GROUP' file='xmlerror' value='1760' type='xmlParserErrors' info='1759'/> - <enum name='XML_SCHEMAP_REDEFINED_NOTATION' file='xmlerror' value='1765' type='xmlParserErrors' info='1764'/> - <enum name='XML_SCHEMAP_REDEFINED_TYPE' file='xmlerror' value='1761' type='xmlParserErrors' info='1760'/> - <enum name='XML_SCHEMAP_REF_AND_CONTENT' file='xmlerror' value='1781' type='xmlParserErrors' info='1780'/> + <enum name='XML_SCHEMAP_RECURSIVE' file='xmlerror' value='1775' type='xmlParserErrors' info='1775'/> + <enum name='XML_SCHEMAP_REDEFINED_ATTR' file='xmlerror' value='1764' type='xmlParserErrors' info='1764'/> + <enum name='XML_SCHEMAP_REDEFINED_ATTRGROUP' file='xmlerror' value='1763' type='xmlParserErrors' info='1763'/> + <enum name='XML_SCHEMAP_REDEFINED_ELEMENT' file='xmlerror' value='1762' type='xmlParserErrors' info='1762'/> + <enum name='XML_SCHEMAP_REDEFINED_GROUP' file='xmlerror' value='1760' type='xmlParserErrors' info='1760'/> + <enum name='XML_SCHEMAP_REDEFINED_NOTATION' file='xmlerror' value='1765' type='xmlParserErrors' info='1765'/> + <enum name='XML_SCHEMAP_REDEFINED_TYPE' file='xmlerror' value='1761' type='xmlParserErrors' info='1761'/> + <enum name='XML_SCHEMAP_REF_AND_CONTENT' file='xmlerror' value='1781' type='xmlParserErrors' info='1781'/> <enum name='XML_SCHEMAP_REF_AND_SUBTYPE' file='xmlerror' value='1725' type='xmlParserErrors' info='1725'/> <enum name='XML_SCHEMAP_REGEXP_INVALID' file='xmlerror' value='1756' type='xmlParserErrors' info='1756'/> <enum name='XML_SCHEMAP_RESTRICTION_NONAME_NOREF' file='xmlerror' value='1726' type='xmlParserErrors' info='1726'/> @@ -4774,17 +4823,21 @@ <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_3_1' file='xmlerror' value='3053' type='xmlParserErrors' info='3053'/> <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_3_2' file='xmlerror' value='3054' type='xmlParserErrors' info='3054'/> <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_4' file='xmlerror' value='3055' type='xmlParserErrors' info='3055'/> + <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1' file='xmlerror' value='3071' type='xmlParserErrors' info='3071'/> + <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2' file='xmlerror' value='3072' type='xmlParserErrors' info='3072'/> + <enum name='XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3' file='xmlerror' value='3073' type='xmlParserErrors' info='3073'/> + <enum name='XML_SCHEMAP_SRC_CT_1' file='xmlerror' value='3076' type='xmlParserErrors' info='3076'/> <enum name='XML_SCHEMAP_SRC_ELEMENT_1' file='xmlerror' value='3038' type='xmlParserErrors' info='3038'/> <enum name='XML_SCHEMAP_SRC_ELEMENT_2_1' file='xmlerror' value='3039' type='xmlParserErrors' info='3039'/> <enum name='XML_SCHEMAP_SRC_ELEMENT_2_2' file='xmlerror' value='3040' type='xmlParserErrors' info='3040'/> <enum name='XML_SCHEMAP_SRC_ELEMENT_3' file='xmlerror' value='3041' type='xmlParserErrors' info='3041'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_1_1' file='xmlerror' value='3064' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_1_2' file='xmlerror' value='3065' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2' file='xmlerror' value='3066' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2_1' file='xmlerror' value='3067' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_2_2' file='xmlerror' value='3068' type='xmlParserErrors'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_3_1' file='xmlerror' value='1795' type='xmlParserErrors' info='1794'/> - <enum name='XML_SCHEMAP_SRC_IMPORT_3_2' file='xmlerror' value='1796' type='xmlParserErrors' info='1795'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_1_1' file='xmlerror' value='3064' type='xmlParserErrors' info='3064'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_1_2' file='xmlerror' value='3065' type='xmlParserErrors' info='3065'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_2' file='xmlerror' value='3066' type='xmlParserErrors' info='3066'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_2_1' file='xmlerror' value='3067' type='xmlParserErrors' info='3067'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_2_2' file='xmlerror' value='3068' type='xmlParserErrors' info='3068'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_3_1' file='xmlerror' value='1795' type='xmlParserErrors' info='1795'/> + <enum name='XML_SCHEMAP_SRC_IMPORT_3_2' file='xmlerror' value='1796' type='xmlParserErrors' info='1796'/> <enum name='XML_SCHEMAP_SRC_INCLUDE' file='xmlerror' value='3050' type='xmlParserErrors' info='3050'/> <enum name='XML_SCHEMAP_SRC_LIST_ITEMTYPE_OR_SIMPLETYPE' file='xmlerror' value='3006' type='xmlParserErrors' info='3006'/> <enum name='XML_SCHEMAP_SRC_RESOLVE' file='xmlerror' value='3004' type='xmlParserErrors' info='3004'/> @@ -4797,9 +4850,9 @@ <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_1' file='xmlerror' value='3008' type='xmlParserErrors' info='3008'/> <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_2' file='xmlerror' value='3009' type='xmlParserErrors' info='3009'/> <enum name='XML_SCHEMAP_ST_PROPS_CORRECT_3' file='xmlerror' value='3010' type='xmlParserErrors' info='3010'/> - <enum name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' file='xmlerror' value='1776' type='xmlParserErrors' info='1775'/> + <enum name='XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE' file='xmlerror' value='1776' type='xmlParserErrors' info='1776'/> <enum name='XML_SCHEMAP_TYPE_AND_SUBTYPE' file='xmlerror' value='1728' type='xmlParserErrors' info='1728'/> - <enum name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' file='xmlerror' value='1794' type='xmlParserErrors' info='1793'/> + <enum name='XML_SCHEMAP_UNION_NOT_EXPRESSIBLE' file='xmlerror' value='1794' type='xmlParserErrors' info='1794'/> <enum name='XML_SCHEMAP_UNKNOWN_ALL_CHILD' file='xmlerror' value='1729' type='xmlParserErrors' info='1729'/> <enum name='XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD' file='xmlerror' value='1730' type='xmlParserErrors' info='1730'/> <enum name='XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD' file='xmlerror' value='1732' type='xmlParserErrors' info='1732'/> @@ -4815,11 +4868,11 @@ <enum name='XML_SCHEMAP_UNKNOWN_FACET_TYPE' file='xmlerror' value='1741' type='xmlParserErrors' info='1741'/> <enum name='XML_SCHEMAP_UNKNOWN_GROUP_CHILD' file='xmlerror' value='1742' type='xmlParserErrors' info='1742'/> <enum name='XML_SCHEMAP_UNKNOWN_IMPORT_CHILD' file='xmlerror' value='1743' type='xmlParserErrors' info='1743'/> - <enum name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' file='xmlerror' value='1769' type='xmlParserErrors' info='1768'/> + <enum name='XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD' file='xmlerror' value='1769' type='xmlParserErrors' info='1769'/> <enum name='XML_SCHEMAP_UNKNOWN_LIST_CHILD' file='xmlerror' value='1744' type='xmlParserErrors' info='1744'/> - <enum name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' file='xmlerror' value='1773' type='xmlParserErrors' info='1772'/> + <enum name='XML_SCHEMAP_UNKNOWN_MEMBER_TYPE' file='xmlerror' value='1773' type='xmlParserErrors' info='1773'/> <enum name='XML_SCHEMAP_UNKNOWN_NOTATION_CHILD' file='xmlerror' value='1745' type='xmlParserErrors' info='1745'/> - <enum name='XML_SCHEMAP_UNKNOWN_PREFIX' file='xmlerror' value='1767' type='xmlParserErrors' info='1766'/> + <enum name='XML_SCHEMAP_UNKNOWN_PREFIX' file='xmlerror' value='1767' type='xmlParserErrors' info='1767'/> <enum name='XML_SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD' file='xmlerror' value='1746' type='xmlParserErrors' info='1746'/> <enum name='XML_SCHEMAP_UNKNOWN_REF' file='xmlerror' value='1747' type='xmlParserErrors' info='1747'/> <enum name='XML_SCHEMAP_UNKNOWN_RESTRICTION_CHILD' file='xmlerror' value='1748' type='xmlParserErrors' info='1748'/> @@ -4829,7 +4882,7 @@ <enum name='XML_SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD' file='xmlerror' value='1752' type='xmlParserErrors' info='1752'/> <enum name='XML_SCHEMAP_UNKNOWN_TYPE' file='xmlerror' value='1753' type='xmlParserErrors' info='1753'/> <enum name='XML_SCHEMAP_UNKNOWN_UNION_CHILD' file='xmlerror' value='1754' type='xmlParserErrors' info='1754'/> - <enum name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' file='xmlerror' value='1792' type='xmlParserErrors' info='1791'/> + <enum name='XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER' file='xmlerror' value='1792' type='xmlParserErrors' info='1792'/> <enum name='XML_SCHEMAS_ANYSIMPLETYPE' file='schemasInternals' value='46' type='xmlSchemaValType'/> <enum name='XML_SCHEMAS_ANYTYPE' file='schemasInternals' value='45' type='xmlSchemaValType'/> <enum name='XML_SCHEMAS_ANYURI' file='schemasInternals' value='29' type='xmlSchemaValType'/> @@ -4903,78 +4956,82 @@ <enum name='XML_SCHEMAS_ULONG' file='schemasInternals' value='38' type='xmlSchemaValType'/> <enum name='XML_SCHEMAS_UNKNOWN' file='schemasInternals' value='0' type='xmlSchemaValType'/> <enum name='XML_SCHEMAS_USHORT' file='schemasInternals' value='40' type='xmlSchemaValType'/> - <enum name='XML_SCHEMAV_ATTRINVALID' file='xmlerror' value='1820' type='xmlParserErrors' info='1820'/> - <enum name='XML_SCHEMAV_ATTRUNKNOWN' file='xmlerror' value='1819' type='xmlParserErrors' info='1819'/> - <enum name='XML_SCHEMAV_CONSTRUCT' file='xmlerror' value='1816' type='xmlParserErrors' info='1816'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_1' file='xmlerror' value='1860' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_2' file='xmlerror' value='1861' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_3' file='xmlerror' value='1862' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_4' file='xmlerror' value='1863' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' file='xmlerror' value='1840' type='xmlParserErrors' info='1840'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' file='xmlerror' value='1841' type='xmlParserErrors' info='1841'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' file='xmlerror' value='1842' type='xmlParserErrors' info='1842'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' file='xmlerror' value='1843' type='xmlParserErrors' info='1843'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' file='xmlerror' value='1864' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' file='xmlerror' value='1865' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' file='xmlerror' value='1866' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' file='xmlerror' value='1867' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' file='xmlerror' value='1868' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' file='xmlerror' value='1869' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' file='xmlerror' value='1823' type='xmlParserErrors' info='1823'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' file='xmlerror' value='1824' type='xmlParserErrors' info='1824'/> - <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' file='xmlerror' value='1825' type='xmlParserErrors' info='1825'/> - <enum name='XML_SCHEMAV_CVC_ELT_1' file='xmlerror' value='1844' type='xmlParserErrors' info='1844'/> - <enum name='XML_SCHEMAV_CVC_ELT_2' file='xmlerror' value='1845' type='xmlParserErrors' info='1845'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_1' file='xmlerror' value='1846' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_2_1' file='xmlerror' value='1847' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_3_2_2' file='xmlerror' value='1848' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_1' file='xmlerror' value='1849' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_2' file='xmlerror' value='1850' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_4_3' file='xmlerror' value='1851' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_1_1' file='xmlerror' value='1852' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_1_2' file='xmlerror' value='1853' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_1' file='xmlerror' value='1854' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_1' file='xmlerror' value='1855' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' file='xmlerror' value='1856' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' file='xmlerror' value='1857' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_6' file='xmlerror' value='1858' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ELT_7' file='xmlerror' value='1859' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_CVC_ENUMERATION_VALID' file='xmlerror' value='1839' type='xmlParserErrors' info='1839'/> - <enum name='XML_SCHEMAV_CVC_FACET_VALID' file='xmlerror' value='1828' type='xmlParserErrors' info='1828'/> - <enum name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' file='xmlerror' value='1837' type='xmlParserErrors' info='1837'/> - <enum name='XML_SCHEMAV_CVC_LENGTH_VALID' file='xmlerror' value='1829' type='xmlParserErrors' info='1829'/> - <enum name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' file='xmlerror' value='1835' type='xmlParserErrors' info='1835'/> - <enum name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' file='xmlerror' value='1833' type='xmlParserErrors' info='1833'/> - <enum name='XML_SCHEMAV_CVC_MAXLENGTH_VALID' file='xmlerror' value='1831' type='xmlParserErrors' info='1831'/> - <enum name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' file='xmlerror' value='1834' type='xmlParserErrors' info='1834'/> - <enum name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' file='xmlerror' value='1832' type='xmlParserErrors' info='1832'/> - <enum name='XML_SCHEMAV_CVC_MINLENGTH_VALID' file='xmlerror' value='1830' type='xmlParserErrors' info='1830'/> - <enum name='XML_SCHEMAV_CVC_PATTERN_VALID' file='xmlerror' value='1838' type='xmlParserErrors' info='1838'/> - <enum name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' file='xmlerror' value='1836' type='xmlParserErrors' info='1836'/> - <enum name='XML_SCHEMAV_CVC_TYPE_3_1_1' file='xmlerror' value='1826' type='xmlParserErrors' info='1826'/> - <enum name='XML_SCHEMAV_CVC_TYPE_3_1_2' file='xmlerror' value='1827' type='xmlParserErrors' info='1827'/> - <enum name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' file='xmlerror' value='1871' type='xmlParserErrors' info='non-W3C'/> - <enum name='XML_SCHEMAV_ELEMCONT' file='xmlerror' value='1809' type='xmlParserErrors' info='1809'/> - <enum name='XML_SCHEMAV_ELEMENT_CONTENT' file='xmlerror' value='1870' type='xmlParserErrors' info='1846 non-W3C'/> - <enum name='XML_SCHEMAV_EXTRACONTENT' file='xmlerror' value='1812' type='xmlParserErrors' info='1812'/> - <enum name='XML_SCHEMAV_FACET' file='xmlerror' value='1822' type='xmlParserErrors' info='1822'/> - <enum name='XML_SCHEMAV_HAVEDEFAULT' file='xmlerror' value='1810' type='xmlParserErrors' info='1810'/> - <enum name='XML_SCHEMAV_INTERNAL' file='xmlerror' value='1817' type='xmlParserErrors' info='1817'/> - <enum name='XML_SCHEMAV_INVALIDATTR' file='xmlerror' value='1813' type='xmlParserErrors' info='1813'/> - <enum name='XML_SCHEMAV_INVALIDELEM' file='xmlerror' value='1814' type='xmlParserErrors' info='1814'/> - <enum name='XML_SCHEMAV_ISABSTRACT' file='xmlerror' value='1807' type='xmlParserErrors' info='1807'/> - <enum name='XML_SCHEMAV_MISSING' file='xmlerror' value='1803' type='xmlParserErrors' info='1803'/> - <enum name='XML_SCHEMAV_NOROLLBACK' file='xmlerror' value='1806' type='xmlParserErrors' info='1806'/> - <enum name='XML_SCHEMAV_NOROOT' file='xmlerror' value='1800' type='xmlParserErrors'/> - <enum name='XML_SCHEMAV_NOTDETERMINIST' file='xmlerror' value='1815' type='xmlParserErrors' info='1815'/> - <enum name='XML_SCHEMAV_NOTEMPTY' file='xmlerror' value='1808' type='xmlParserErrors' info='1808'/> - <enum name='XML_SCHEMAV_NOTNILLABLE' file='xmlerror' value='1811' type='xmlParserErrors' info='1811'/> - <enum name='XML_SCHEMAV_NOTSIMPLE' file='xmlerror' value='1818' type='xmlParserErrors' info='1818'/> - <enum name='XML_SCHEMAV_NOTTOPLEVEL' file='xmlerror' value='1802' type='xmlParserErrors' info='1802'/> - <enum name='XML_SCHEMAV_NOTYPE' file='xmlerror' value='1805' type='xmlParserErrors' info='1805'/> - <enum name='XML_SCHEMAV_UNDECLAREDELEM' file='xmlerror' value='1801' type='xmlParserErrors' info='1801'/> - <enum name='XML_SCHEMAV_VALUE' file='xmlerror' value='1821' type='xmlParserErrors' info='1821'/> - <enum name='XML_SCHEMAV_WRONGELEM' file='xmlerror' value='1804' type='xmlParserErrors' info='1804'/> + <enum name='XML_SCHEMAV_ATTRINVALID' file='xmlerror' value='1821' type='xmlParserErrors' info='1821'/> + <enum name='XML_SCHEMAV_ATTRUNKNOWN' file='xmlerror' value='1820' type='xmlParserErrors' info='1820'/> + <enum name='XML_SCHEMAV_CONSTRUCT' file='xmlerror' value='1817' type='xmlParserErrors' info='1817'/> + <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_1' file='xmlerror' value='1861' type='xmlParserErrors' info='1861'/> + <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_2' file='xmlerror' value='1862' type='xmlParserErrors' info='1862'/> + <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_3' file='xmlerror' value='1863' type='xmlParserErrors' info='1863'/> + <enum name='XML_SCHEMAV_CVC_ATTRIBUTE_4' file='xmlerror' value='1864' type='xmlParserErrors' info='1864'/> + <enum name='XML_SCHEMAV_CVC_AU' file='xmlerror' value='1874' type='xmlParserErrors' info='1874'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_1' file='xmlerror' value='1873' type='xmlParserErrors' info='1873'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1' file='xmlerror' value='1841' type='xmlParserErrors' info='1841'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2' file='xmlerror' value='1842' type='xmlParserErrors' info='1842'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3' file='xmlerror' value='1843' type='xmlParserErrors' info='1843'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4' file='xmlerror' value='1844' type='xmlParserErrors' info='1844'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1' file='xmlerror' value='1865' type='xmlParserErrors' info='1865'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1' file='xmlerror' value='1866' type='xmlParserErrors' info='1866'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2' file='xmlerror' value='1867' type='xmlParserErrors' info='1867'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_4' file='xmlerror' value='1868' type='xmlParserErrors' info='1868'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1' file='xmlerror' value='1869' type='xmlParserErrors' info='1869'/> + <enum name='XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2' file='xmlerror' value='1870' type='xmlParserErrors' info='1870'/> + <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1' file='xmlerror' value='1824' type='xmlParserErrors' info='1824'/> + <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2' file='xmlerror' value='1825' type='xmlParserErrors' info='1825'/> + <enum name='XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3' file='xmlerror' value='1826' type='xmlParserErrors' info='1826'/> + <enum name='XML_SCHEMAV_CVC_ELT_1' file='xmlerror' value='1845' type='xmlParserErrors' info='1845'/> + <enum name='XML_SCHEMAV_CVC_ELT_2' file='xmlerror' value='1846' type='xmlParserErrors' info='1846'/> + <enum name='XML_SCHEMAV_CVC_ELT_3_1' file='xmlerror' value='1847' type='xmlParserErrors' info='1847'/> + <enum name='XML_SCHEMAV_CVC_ELT_3_2_1' file='xmlerror' value='1848' type='xmlParserErrors' info='1848'/> + <enum name='XML_SCHEMAV_CVC_ELT_3_2_2' file='xmlerror' value='1849' type='xmlParserErrors' info='1849'/> + <enum name='XML_SCHEMAV_CVC_ELT_4_1' file='xmlerror' value='1850' type='xmlParserErrors' info='1850'/> + <enum name='XML_SCHEMAV_CVC_ELT_4_2' file='xmlerror' value='1851' type='xmlParserErrors' info='1851'/> + <enum name='XML_SCHEMAV_CVC_ELT_4_3' file='xmlerror' value='1852' type='xmlParserErrors' info='1852'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_1_1' file='xmlerror' value='1853' type='xmlParserErrors' info='1853'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_1_2' file='xmlerror' value='1854' type='xmlParserErrors' info='1854'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_2_1' file='xmlerror' value='1855' type='xmlParserErrors' info='1855'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_1' file='xmlerror' value='1856' type='xmlParserErrors' info='1856'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_1' file='xmlerror' value='1857' type='xmlParserErrors' info='1857'/> + <enum name='XML_SCHEMAV_CVC_ELT_5_2_2_2_2' file='xmlerror' value='1858' type='xmlParserErrors' info='1858'/> + <enum name='XML_SCHEMAV_CVC_ELT_6' file='xmlerror' value='1859' type='xmlParserErrors' info='1859'/> + <enum name='XML_SCHEMAV_CVC_ELT_7' file='xmlerror' value='1860' type='xmlParserErrors' info='1860'/> + <enum name='XML_SCHEMAV_CVC_ENUMERATION_VALID' file='xmlerror' value='1840' type='xmlParserErrors' info='1840'/> + <enum name='XML_SCHEMAV_CVC_FACET_VALID' file='xmlerror' value='1829' type='xmlParserErrors' info='1829'/> + <enum name='XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID' file='xmlerror' value='1838' type='xmlParserErrors' info='1838'/> + <enum name='XML_SCHEMAV_CVC_LENGTH_VALID' file='xmlerror' value='1830' type='xmlParserErrors' info='1830'/> + <enum name='XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID' file='xmlerror' value='1836' type='xmlParserErrors' info='1836'/> + <enum name='XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID' file='xmlerror' value='1834' type='xmlParserErrors' info='1834'/> + <enum name='XML_SCHEMAV_CVC_MAXLENGTH_VALID' file='xmlerror' value='1832' type='xmlParserErrors' info='1832'/> + <enum name='XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID' file='xmlerror' value='1835' type='xmlParserErrors' info='1835'/> + <enum name='XML_SCHEMAV_CVC_MININCLUSIVE_VALID' file='xmlerror' value='1833' type='xmlParserErrors' info='1833'/> + <enum name='XML_SCHEMAV_CVC_MINLENGTH_VALID' file='xmlerror' value='1831' type='xmlParserErrors' info='1831'/> + <enum name='XML_SCHEMAV_CVC_PATTERN_VALID' file='xmlerror' value='1839' type='xmlParserErrors' info='1839'/> + <enum name='XML_SCHEMAV_CVC_TOTALDIGITS_VALID' file='xmlerror' value='1837' type='xmlParserErrors' info='1837'/> + <enum name='XML_SCHEMAV_CVC_TYPE_1' file='xmlerror' value='1875' type='xmlParserErrors' info='1875'/> + <enum name='XML_SCHEMAV_CVC_TYPE_2' file='xmlerror' value='1876' type='xmlParserErrors' info='1876'/> + <enum name='XML_SCHEMAV_CVC_TYPE_3_1_1' file='xmlerror' value='1827' type='xmlParserErrors' info='1827'/> + <enum name='XML_SCHEMAV_CVC_TYPE_3_1_2' file='xmlerror' value='1828' type='xmlParserErrors' info='1828'/> + <enum name='XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING' file='xmlerror' value='1872' type='xmlParserErrors' info='1872'/> + <enum name='XML_SCHEMAV_ELEMCONT' file='xmlerror' value='1810' type='xmlParserErrors' info='1810'/> + <enum name='XML_SCHEMAV_ELEMENT_CONTENT' file='xmlerror' value='1871' type='xmlParserErrors' info='1871'/> + <enum name='XML_SCHEMAV_EXTRACONTENT' file='xmlerror' value='1813' type='xmlParserErrors' info='1813'/> + <enum name='XML_SCHEMAV_FACET' file='xmlerror' value='1823' type='xmlParserErrors' info='1823'/> + <enum name='XML_SCHEMAV_HAVEDEFAULT' file='xmlerror' value='1811' type='xmlParserErrors' info='1811'/> + <enum name='XML_SCHEMAV_INTERNAL' file='xmlerror' value='1818' type='xmlParserErrors' info='1818'/> + <enum name='XML_SCHEMAV_INVALIDATTR' file='xmlerror' value='1814' type='xmlParserErrors' info='1814'/> + <enum name='XML_SCHEMAV_INVALIDELEM' file='xmlerror' value='1815' type='xmlParserErrors' info='1815'/> + <enum name='XML_SCHEMAV_ISABSTRACT' file='xmlerror' value='1808' type='xmlParserErrors' info='1808'/> + <enum name='XML_SCHEMAV_MISSING' file='xmlerror' value='1804' type='xmlParserErrors' info='1804'/> + <enum name='XML_SCHEMAV_NOROLLBACK' file='xmlerror' value='1807' type='xmlParserErrors' info='1807'/> + <enum name='XML_SCHEMAV_NOROOT' file='xmlerror' value='1801' type='xmlParserErrors'/> + <enum name='XML_SCHEMAV_NOTDETERMINIST' file='xmlerror' value='1816' type='xmlParserErrors' info='1816'/> + <enum name='XML_SCHEMAV_NOTEMPTY' file='xmlerror' value='1809' type='xmlParserErrors' info='1809'/> + <enum name='XML_SCHEMAV_NOTNILLABLE' file='xmlerror' value='1812' type='xmlParserErrors' info='1812'/> + <enum name='XML_SCHEMAV_NOTSIMPLE' file='xmlerror' value='1819' type='xmlParserErrors' info='1819'/> + <enum name='XML_SCHEMAV_NOTTOPLEVEL' file='xmlerror' value='1803' type='xmlParserErrors' info='1803'/> + <enum name='XML_SCHEMAV_NOTYPE' file='xmlerror' value='1806' type='xmlParserErrors' info='1806'/> + <enum name='XML_SCHEMAV_UNDECLAREDELEM' file='xmlerror' value='1802' type='xmlParserErrors' info='1802'/> + <enum name='XML_SCHEMAV_VALUE' file='xmlerror' value='1822' type='xmlParserErrors' info='1822'/> + <enum name='XML_SCHEMAV_WRONGELEM' file='xmlerror' value='1805' type='xmlParserErrors' info='1805'/> <enum name='XML_SCHEMA_CONTENT_ANY' file='schemasInternals' value='7' type='xmlSchemaContentType'/> <enum name='XML_SCHEMA_CONTENT_BASIC' file='schemasInternals' value='6' type='xmlSchemaContentType'/> <enum name='XML_SCHEMA_CONTENT_ELEMENTS' file='schemasInternals' value='2' type='xmlSchemaContentType'/> @@ -5016,6 +5073,9 @@ <enum name='XML_SCHEMA_TYPE_SIMPLE_CONTENT' file='schemasInternals' value='9' type='xmlSchemaTypeType'/> <enum name='XML_SCHEMA_TYPE_UNION' file='schemasInternals' value='20' type='xmlSchemaTypeType'/> <enum name='XML_SCHEMA_TYPE_UR' file='schemasInternals' value='11' type='xmlSchemaTypeType'/> + <enum name='XML_SCHEMA_VAL_VC_I_CREATE' file='xmlschemas' value='1' type='xmlSchemaValidOption' info=' Default/fixed: create an attribute node +* or an element's text node on the instance. +*'/> <enum name='XML_TEXTREADER_MODE_CLOSED' file='xmlreader' value='4' type='xmlTextReaderMode'/> <enum name='XML_TEXTREADER_MODE_EOF' file='xmlreader' value='3' type='xmlTextReaderMode'/> <enum name='XML_TEXTREADER_MODE_ERROR' file='xmlreader' value='2' type='xmlTextReaderMode'/> @@ -5759,6 +5819,7 @@ actually an xmlCharEncoding'/> <field name='dict' type='xmlDictPtr' info=''/> <field name='includes' type='void *' info=' the includes, this is opaque for now'/> <field name='preserve' type='int' info=' whether to free the document'/> + <field name='counter' type='int' info=' used to give ononymous components unique names'/> </struct> <struct name='xmlSchemaAnnot' file='schemasInternals' type='struct _xmlSchemaAnnot'> <field name='next' type='struct _xmlSchemaAnnot *' info=''/> @@ -5783,6 +5844,8 @@ actually an xmlCharEncoding'/> <field name='targetNamespace' type='const xmlChar *' info=''/> <field name='flags' type='int' info=''/> <field name='refPrefix' type='const xmlChar *' info=''/> + <field name='defVal' type='xmlSchemaValPtr' info=''/> + <field name='refDecl' type='xmlSchemaAttributePtr' info=''/> </struct> <struct name='xmlSchemaAttributeGroup' file='schemasInternals' type='struct _xmlSchemaAttributeGroup'> <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> @@ -5797,6 +5860,7 @@ actually an xmlCharEncoding'/> <field name='flags' type='int' info=''/> <field name='attributeWildcard' type='xmlSchemaWildcardPtr' info=''/> <field name='refPrefix' type='const xmlChar *' info=''/> + <field name='refItem' type='xmlSchemaAttributeGroupPtr' info=' The referenced attribute group'/> </struct> <typedef name='xmlSchemaAttributeGroupPtr' file='schemasInternals' type='xmlSchemaAttributeGroup *'/> <struct name='xmlSchemaAttributeLink' file='schemasInternals' type='struct _xmlSchemaAttributeLink'> @@ -5831,6 +5895,7 @@ actually an xmlCharEncoding'/> <field name='contModel' type='xmlRegexpPtr' info=''/> <field name='contentType' type='xmlSchemaContentType' info=''/> <field name='refPrefix' type='const xmlChar *' info=''/> + <field name='defVal' type='xmlSchemaValPtr' info=''/> </struct> <typedef name='xmlSchemaElementPtr' file='schemasInternals' type='xmlSchemaElement *'/> <struct name='xmlSchemaFacet' file='schemasInternals' type='struct _xmlSchemaFacet'> @@ -5889,6 +5954,7 @@ actually an xmlCharEncoding'/> <field name='facetSet' type='xmlSchemaFacetLinkPtr' info=''/> <field name='refPrefix' type='const xmlChar *' info=''/> <field name='contentTypeDef' type='xmlSchemaTypePtr' info=''/> + <field name='contModel' type='xmlRegexpPtr' info=''/> </struct> <struct name='xmlSchemaTypeLink' file='schemasInternals' type='struct _xmlSchemaTypeLink'> <field name='next' type='struct _xmlSchemaTypeLink *' info=' the next type link ...'/> @@ -5903,6 +5969,7 @@ actually an xmlCharEncoding'/> <struct name='xmlSchemaValidCtxt' file='xmlschemas' type='struct _xmlSchemaValidCtxt'/> <typedef name='xmlSchemaValidCtxtPtr' file='xmlschemas' type='xmlSchemaValidCtxt *'/> <typedef name='xmlSchemaValidError' file='xmlschemas' type='enum'/> + <typedef name='xmlSchemaValidOption' file='xmlschemas' type='enum'/> <struct name='xmlSchemaWildcard' file='schemasInternals' type='struct _xmlSchemaWildcard'> <field name='type' type='xmlSchemaTypeType' info=' The kind of type'/> <field name='id' type='const xmlChar *' info=''/> @@ -7523,6 +7590,19 @@ actually an xmlCharEncoding'/> <arg name='max' type='int' info='the maximum successive occurences of token'/> <arg name='data' type='void *' info='data associated to the transition'/> </function> + <function name='xmlAutomataNewCountTrans2' file='xmlautomata'> + <cond>LIBXML_AUTOMATA_ENABLED</cond> + <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max</info> + <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> + <arg name='am' type='xmlAutomataPtr' info='an automata'/> + <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> + <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> + <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> + <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> + <arg name='min' type='int' info='the minimum successive occurences of token'/> + <arg name='max' type='int' info='the maximum successive occurences of token'/> + <arg name='data' type='void *' info='data associated to the transition'/> + </function> <function name='xmlAutomataNewCountedTrans' file='xmlautomata'> <cond>LIBXML_AUTOMATA_ENABLED</cond> <info>If @to is NULL, this creates first a new target state in the automata and then adds an epsilon transition from the @from state to the target state which will increment the counter provided</info> @@ -7569,6 +7649,19 @@ actually an xmlCharEncoding'/> <arg name='max' type='int' info='the maximum successive occurences of token'/> <arg name='data' type='void *' info='data associated to the transition'/> </function> + <function name='xmlAutomataNewOnceTrans2' file='xmlautomata'> + <cond>LIBXML_AUTOMATA_ENABLED</cond> + <info>If @to is NULL, this creates first a new target state in the automata and then adds a transition from the @from state to the target state activated by a succession of input of value @token and @token2 and whose number is between @min and @max, moreover that transition can only be crossed once.</info> + <return type='xmlAutomataStatePtr' info='the target state or NULL in case of error'/> + <arg name='am' type='xmlAutomataPtr' info='an automata'/> + <arg name='from' type='xmlAutomataStatePtr' info='the starting point of the transition'/> + <arg name='to' type='xmlAutomataStatePtr' info='the target point of the transition or NULL'/> + <arg name='token' type='const xmlChar *' info='the input string associated to that transition'/> + <arg name='token2' type='const xmlChar *' info='the second input string associated to that transition'/> + <arg name='min' type='int' info='the minimum successive occurences of token'/> + <arg name='max' type='int' info='the maximum successive occurences of token'/> + <arg name='data' type='void *' info='data associated to the transition'/> + </function> <function name='xmlAutomataNewState' file='xmlautomata'> <cond>LIBXML_AUTOMATA_ENABLED</cond> <info>Create a new disconnected state in the automata</info> @@ -9026,10 +9119,10 @@ actually an xmlCharEncoding'/> <return type='int' info='the current thread ID number'/> </function> <function name='xmlGetUTF8Char' file='xmlstring'> - <info>Read one UTF8 Char from @utf</info> - <return type='int' info='the char value or -1 in case of error, and updates *len with the number of bytes consumed'/> + <info>Read the first UTF8 character from @utf</info> + <return type='int' info='the char value or -1 in case of error, and sets *len to the actual number of bytes consumed (0 in case of error)'/> <arg name='utf' type='const unsigned char *' info='a sequence of UTF-8 encoded bytes'/> - <arg name='len' type='int *' info='a pointer to @bytes len'/> + <arg name='len' type='int *' info='a pointer to the minimum number of bytes present in the sequence. This is used to assure the next character is completely contained within the sequence.'/> </function> <function name='xmlHandleEntity' file='parserInternals'> <info>Default handling of defined entities, when should we define a new input stream ? When do we just handle that as a set of chars ? OBSOLETE: to be removed at some point.</info> @@ -9962,6 +10055,12 @@ actually an xmlCharEncoding'/> <return type='void'/> <arg name='ctx' type='void *' info='the HTTP context'/> </function> + <function name='xmlNanoHTTPContentLength' file='nanohttp'> + <cond>LIBXML_HTTP_ENABLED</cond> + <info>Provides the specified content length from the HTTP header.</info> + <return type='int' info='the specified content length from the HTTP header. Note that a value of -1 indicates that the content length element was not included in the response header.'/> + <arg name='ctx' type='void *' info='the HTTP context'/> + </function> <function name='xmlNanoHTTPEncoding' file='nanohttp'> <cond>LIBXML_HTTP_ENABLED</cond> <info>Provides the specified encoding if specified in the HTTP headers.</info> @@ -10869,7 +10968,7 @@ actually an xmlCharEncoding'/> <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> </function> <function name='xmlParseName' file='parserInternals'> - <info>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (S Name)*</info> + <info>parse an XML name. [4] NameChar ::= Letter | Digit | '.' | '-' | '_' | ':' | CombiningChar | Extender [5] Name ::= (Letter | '_' | ':') (NameChar)* [6] Names ::= Name (#x20 Name)*</info> <return type='const xmlChar *' info='the Name parsed or NULL'/> <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> </function> @@ -10879,7 +10978,7 @@ actually an xmlCharEncoding'/> <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> </function> <function name='xmlParseNmtoken' file='parserInternals'> - <info>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (S Nmtoken)*</info> + <info>parse an XML Nmtoken. [7] Nmtoken ::= (NameChar)+ [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*</info> <return type='xmlChar *' info='the Nmtoken parsed or NULL'/> <arg name='ctxt' type='xmlParserCtxtPtr' info='an XML parser context'/> </function> @@ -12182,9 +12281,9 @@ actually an xmlCharEncoding'/> </function> <function name='xmlSchemaFreeValidCtxt' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> - <info></info> + <info>Free the resources associated to the schema validation context</info> <return type='void'/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='the schema validation context'/> </function> <function name='xmlSchemaFreeValue' file='xmlschemastypes'> <cond>LIBXML_SCHEMAS_ENABLED</cond> @@ -12234,12 +12333,12 @@ actually an xmlCharEncoding'/> </function> <function name='xmlSchemaGetValidErrors' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='err' type='xmlSchemaValidityErrorFunc *' info=''/> - <arg name='warn' type='xmlSchemaValidityWarningFunc *' info=''/> - <arg name='ctx' type='void **' info=''/> + <info>Get the error and warning callback informations</info> + <return type='int' info='-1 in case of error and 0 otherwise'/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='a XML-Schema validation context'/> + <arg name='err' type='xmlSchemaValidityErrorFunc *' info='the error function result'/> + <arg name='warn' type='xmlSchemaValidityWarningFunc *' info='the warning function result'/> + <arg name='ctx' type='void **' info='the functions context result'/> </function> <function name='xmlSchemaInitTypes' file='xmlschemastypes'> <cond>LIBXML_SCHEMAS_ENABLED</cond> @@ -12279,9 +12378,9 @@ actually an xmlCharEncoding'/> </function> <function name='xmlSchemaNewValidCtxt' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> - <info></info> - <return type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='schema' type='xmlSchemaPtr' info=''/> + <info>Create an XML Schemas validation context based on the given schema</info> + <return type='xmlSchemaValidCtxtPtr' info='the validation context or NULL in case of error'/> + <arg name='schema' type='xmlSchemaPtr' info='a precompiled XML Schemas'/> </function> <function name='xmlSchemaParse' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> @@ -12300,12 +12399,19 @@ actually an xmlCharEncoding'/> </function> <function name='xmlSchemaSetValidErrors' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> - <info></info> + <info>Set the error and warning callback informations</info> <return type='void'/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='a schema validation context'/> + <arg name='err' type='xmlSchemaValidityErrorFunc' info='the error function'/> + <arg name='warn' type='xmlSchemaValidityWarningFunc' info='the warning function'/> + <arg name='ctx' type='void *' info='the functions context'/> + </function> + <function name='xmlSchemaSetValidOptions' file='xmlschemas'> + <cond>LIBXML_SCHEMAS_ENABLED</cond> + <info></info> + <return type='int' info=''/> <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='err' type='xmlSchemaValidityErrorFunc' info=''/> - <arg name='warn' type='xmlSchemaValidityWarningFunc' info=''/> - <arg name='ctx' type='void *' info=''/> + <arg name='options' type='int' info=''/> </function> <function name='xmlSchemaValPredefTypeNode' file='xmlschemastypes'> <cond>LIBXML_SCHEMAS_ENABLED</cond> @@ -12325,12 +12431,18 @@ actually an xmlCharEncoding'/> <arg name='val' type='xmlSchemaValPtr *' info='the return computed value'/> <arg name='node' type='xmlNodePtr' info='the node containing the value'/> </function> - <function name='xmlSchemaValidateDoc' file='xmlschemas'> + <function name='xmlSchemaValidCtxtGetOptions' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> <info></info> <return type='int' info=''/> <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='instance' type='xmlDocPtr' info=''/> + </function> + <function name='xmlSchemaValidateDoc' file='xmlschemas'> + <cond>LIBXML_SCHEMAS_ENABLED</cond> + <info>Validate a document tree in memory.</info> + <return type='int' info='0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.'/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='a schema validation context'/> + <arg name='doc' type='xmlDocPtr' info='a parsed document tree'/> </function> <function name='xmlSchemaValidateFacet' file='xmlschemastypes'> <cond>LIBXML_SCHEMAS_ENABLED</cond> @@ -12360,6 +12472,13 @@ actually an xmlCharEncoding'/> <arg name='actualLen' type='unsigned long' info='the number of list items'/> <arg name='expectedLen' type='unsigned long *' info='the resulting expected number of list items'/> </function> + <function name='xmlSchemaValidateOneElement' file='xmlschemas'> + <cond>LIBXML_SCHEMAS_ENABLED</cond> + <info>Validate a branch of a tree, starting with the given @elem.</info> + <return type='int' info='0 if the element and its subtree is valid, a positive error code number otherwise and -1 in case of an internal or API error.'/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='a schema validation context'/> + <arg name='elem' type='xmlNodePtr' info='an element node'/> + </function> <function name='xmlSchemaValidatePredefinedType' file='xmlschemastypes'> <cond>LIBXML_SCHEMAS_ENABLED</cond> <info>Check that a value conforms to the lexical space of the predefined type. if true a value is computed and returned in @val.</info> @@ -12370,13 +12489,13 @@ actually an xmlCharEncoding'/> </function> <function name='xmlSchemaValidateStream' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> - <info></info> - <return type='int' info=''/> - <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info=''/> - <arg name='input' type='xmlParserInputBufferPtr' info=''/> - <arg name='enc' type='xmlCharEncoding' info=''/> - <arg name='sax' type='xmlSAXHandlerPtr' info=''/> - <arg name='user_data' type='void *' info=''/> + <info>Validate a document tree in memory.</info> + <return type='int' info='0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.'/> + <arg name='ctxt' type='xmlSchemaValidCtxtPtr' info='a schema validation context'/> + <arg name='input' type='xmlParserInputBufferPtr' info='the input to use for reading the data'/> + <arg name='enc' type='xmlCharEncoding' info='an optional encoding information'/> + <arg name='sax' type='xmlSAXHandlerPtr' info='a SAX handler for the resulting events'/> + <arg name='user_data' type='void *' info='the context to provide to the SAX handler.'/> </function> <functype name='xmlSchemaValidityErrorFunc' file='xmlschemas'> <cond>LIBXML_SCHEMAS_ENABLED</cond> diff --git a/doc/libxml2.xsa b/doc/libxml2.xsa index 0cfe5ea..d093fb7 100644 --- a/doc/libxml2.xsa +++ b/doc/libxml2.xsa @@ -8,34 +8,19 @@ </vendor> <product id="libxml2"> <name>libxml2</name> - <version>2.6.12</version> - <last-release> Aug 22 2004</last-release> + <version>2.6.13</version> + <last-release> Aug 31 2004</last-release> <info-url>http://xmlsoft.org/</info-url> - <changes> - build fixes: fix --with-minimum, elfgcchack.h fixes (Peter - Breitenlohner), perl path lookup (William), diff on Solaris (Albert - Chin), some 64bits cleanups. - - Python: avoid a warning with 2.3 (William Brack), tab and space mixes - (William), wrapper generator fixes (William), Cygwin support (Gerrit P. - Haase), node wrapper fix (Marc-Antoine Parent), XML Schemas support - (Torkel Lyng) - - Schemas: a lot of bug fixes and improvements from Kasimier Buchcik - - fixes: RVT fixes (William), XPath context resets bug (William), memory - debug (Steve Hay), catalog white space handling (Peter Breitenlohner), - xmlReader state after attribute reading (William), structured error - handler (William), XInclude generated xml:base fixup (William), Windows - memory reallocation problem (Steve Hay), Out of Memory conditions - handling (William and Olivier Andrieu), htmlNewDoc() charset bug, - htmlReadMemory init (William), a posteriori validation DTD base - (William), notations serialization missing, xmlGetNodePath (Dodji), - xmlCheckUTF8 (Diego Tartara), missing line numbers on entity - (William) - - improvements: DocBook catalog build scrip (William), xmlcatalog tool - (Albert Chin), xmllint --c14n option, no_proxy environment (Mike Hommey), - xmlParseInNodeContext() addition, extend xmllint --shell, allow XInclude - to not generate start/end nodes, extend xmllint --version to include CVS - tag (William) - - documentation: web pages fixes, validity API docs fixes (William) - schemas API fix (Eric Haszlakiewicz), xmllint man page (John Fleck) + <changes> - build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, + Solaris compiler warning, fixing RPM BuildRequires, + - fixes: DTD loading on Windows (Igor), Schemas error reports APIs + (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack + and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace + problem (William), Schemas hexbinary empty values, encoding error could + genrate a serialization loop. + - Improvements: Schemas validity improvements (Kasimier), added --path + and --load-trace options to xmllint + - documentation: tutorial update (John Fleck) </changes> </product> diff --git a/doc/news.html b/doc/news.html index 187ace7..5e25490 100644 --- a/doc/news.html +++ b/doc/news.html @@ -12,8 +12,23 @@ to help those</p><ul><li>More testing on RelaxNG</li> <li>Finishing up <a href="http://www.w3.org/TR/xmlschema-1/">XML Schemas</a></li> </ul><p>The <a href="ChangeLog.html">change log</a> describes the recents commits -to the <a href="http://cvs.gnome.org/viewcvs/libxml2/">CVS</a> code base.</p><p>There is the list of public releases:</p><h3>2.6.13: Aug 31 2004</h3><ul><li>build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, - Solaris compiler warning, fixing RPM BuildRequires, </li> +to the <a href="http://cvs.gnome.org/viewcvs/libxml2/">CVS</a> code base.</p><p>There is the list of public releases:</p><h3>2.6.14: Sep 29 2004</h3><ul><li>build fixes: configure paths for xmllint and xsltproc, compilation + without HTML parser, compilation warning cleanups (William Brack & + Malcolm Tredinnick), VMS makefile update (Craig Berry), </li> + <li>bug fixes: xmlGetUTF8Char (William Brack), QName properties (Kasimier + Buchcik), XInclude testing, Notation serialization, UTF8ToISO8859x + transcoding (Mark Itzcovitz), lots of XML Schemas cleanup and fixes + (Kasimier), ChangeLog cleanup (Stepan Kasal), memory fixes (Mark Vakoc), + handling of failed realloc(), out of bound array adressing in Schemas + date handling, Python space/tabs cleanups (Malcolm Tredinnick), NMTOKENS + E20 validation fix (Malcolm), </li> + <li>improvements: added W3C XML Schemas testsuite (Kasimier Buchcik), add + xmlSchemaValidateOneElement (Kasimier), Python exception hierearchy + (Malcolm Tredinnick), Python libxml2 driver improvement (Malcolm + Tredinnick), Schemas support for xsi:schemaLocation, + xsi:noNamespaceSchemaLocation, xsi:type (Kasimier Buchcik)</li> +</ul><h3>2.6.13: Aug 31 2004</h3><ul><li>build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, + Solaris compiler warning, fixing RPM BuildRequires,</li> <li>fixes: DTD loading on Windows (Igor), Schemas error reports APIs (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace diff --git a/doc/xml.html b/doc/xml.html index 893393b..a94803b 100644 --- a/doc/xml.html +++ b/doc/xml.html @@ -603,7 +603,8 @@ database</a>:</p> href="ftp://xmlsoft.org/">xmlsoft.org</a> server ( <a href="http://xmlsoft.org/sources/">HTTP</a>, <a href="ftp://xmlsoft.org/">FTP</a> and rsync are available), there is also -mirrors (<a href="ftp://speakeasy.rpmfind.net/pub/libxml/">Seattle</a>, <a +mirrors (<a href="ftp://ftp.planetmirror.com/pub/xmlsoft/">Australia</a>( <a +href="http://xmlsoft.planetmirror.com/">Web</a>), <a href="ftp://fr.rpmfind.net/pub/libxml/">France</a>) or on the <a href="ftp://ftp.gnome.org/pub/GNOME/MIRRORS.html">Gnome FTP server</a> as <a href="ftp://ftp.gnome.org/pub/GNOME/sources/libxml2/2.6/">source archive</a> @@ -679,10 +680,29 @@ to the <a href="http://cvs.gnome.org/viewcvs/libxml2/">CVS</a> code base.</p> <p>There is the list of public releases:</p> +<h3>2.6.14: Sep 29 2004</h3> +<ul> + <li>build fixes: configure paths for xmllint and xsltproc, compilation + without HTML parser, compilation warning cleanups (William Brack & + Malcolm Tredinnick), VMS makefile update (Craig Berry), </li> + <li>bug fixes: xmlGetUTF8Char (William Brack), QName properties (Kasimier + Buchcik), XInclude testing, Notation serialization, UTF8ToISO8859x + transcoding (Mark Itzcovitz), lots of XML Schemas cleanup and fixes + (Kasimier), ChangeLog cleanup (Stepan Kasal), memory fixes (Mark Vakoc), + handling of failed realloc(), out of bound array adressing in Schemas + date handling, Python space/tabs cleanups (Malcolm Tredinnick), NMTOKENS + E20 validation fix (Malcolm), </li> + <li>improvements: added W3C XML Schemas testsuite (Kasimier Buchcik), add + xmlSchemaValidateOneElement (Kasimier), Python exception hierearchy + (Malcolm Tredinnick), Python libxml2 driver improvement (Malcolm + Tredinnick), Schemas support for xsi:schemaLocation, + xsi:noNamespaceSchemaLocation, xsi:type (Kasimier Buchcik)</li> +</ul> + <h3>2.6.13: Aug 31 2004</h3> <ul> <li>build fixes: Windows and zlib (Igor Zlatkovic), -O flag with gcc, - Solaris compiler warning, fixing RPM BuildRequires, </li> + Solaris compiler warning, fixing RPM BuildRequires,</li> <li>fixes: DTD loading on Windows (Igor), Schemas error reports APIs (Kasimier Buchcik), Schemas validation crash, xmlCheckUTF8 (William Brack and Julius Mittenzwei), Schemas facet check (Kasimier), default namespace @@ -2132,7 +2132,7 @@ xmlByteConsumed(xmlParserCtxtPtr ctxt) { */ if (in->end - in->cur > 0) { static unsigned char convbuf[32000]; - unsigned const char *cur = (unsigned const char *)in->cur; + const unsigned char *cur = (const unsigned char *)in->cur; int toconv = in->end - in->cur, written = 32000; int ret; @@ -2230,7 +2230,7 @@ UTF8ToISO8859x(unsigned char* out, int *outlen, return(-2); } c = *in++; - if ((c & 0xC0) != 0xC0) { + if ((c & 0xC0) != 0x80) { /* not a trailing byte */ *outlen = out - outstart; *inlen = in - instart - 2; @@ -2256,14 +2256,14 @@ UTF8ToISO8859x(unsigned char* out, int *outlen, return(-2); } c1 = *in++; - if ((c1 & 0xC0) != 0xC0) { + if ((c1 & 0xC0) != 0x80) { /* not a trailing byte (c1) */ *outlen = out - outstart; *inlen = in - instart - 2; return(-2); } c2 = *in++; - if ((c2 & 0xC0) != 0xC0) { + if ((c2 & 0xC0) != 0x80) { /* not a trailing byte (c2) */ *outlen = out - outstart; *inlen = in - instart - 2; @@ -2271,8 +2271,9 @@ UTF8ToISO8859x(unsigned char* out, int *outlen, } c1 = c1 & 0x3F; c2 = c2 & 0x3F; - d = d & 0x0F; - d = xlattable [48 + c2 + xlattable [48 + c1 + xlattable [32 + d] * 64] * 64]; + d = d & 0x0F; + d = xlattable [48 + c2 + xlattable [48 + c1 + + xlattable [32 + d] * 64] * 64]; if (d == 0) { /* not in character set */ *outlen = out - outstart; diff --git a/example/Makefile.in b/example/Makefile.in index 5b40eaf..9e6ac77 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -214,6 +214,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -221,6 +222,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ diff --git a/include/Makefile.in b/include/Makefile.in index bdc1a97..ad94885 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -200,6 +200,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -207,6 +208,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ diff --git a/include/libxml/Makefile.in b/include/libxml/Makefile.in index 8b5a631..782fd6d 100644 --- a/include/libxml/Makefile.in +++ b/include/libxml/Makefile.in @@ -198,6 +198,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -205,6 +206,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ diff --git a/include/libxml/nanohttp.h b/include/libxml/nanohttp.h index 2853184..1d8ac24 100644 --- a/include/libxml/nanohttp.h +++ b/include/libxml/nanohttp.h @@ -56,6 +56,8 @@ XMLPUBFUN const char * XMLCALL xmlNanoHTTPAuthHeader (void *ctx); XMLPUBFUN const char * XMLCALL xmlNanoHTTPRedir (void *ctx); +XMLPUBFUN int XMLCALL + xmlNanoHTTPContentLength( void * ctx ); XMLPUBFUN const char * XMLCALL xmlNanoHTTPEncoding (void *ctx); XMLPUBFUN const char * XMLCALL diff --git a/include/libxml/schemasInternals.h b/include/libxml/schemasInternals.h index 6aa8dd6..9fb7aba 100644 --- a/include/libxml/schemasInternals.h +++ b/include/libxml/schemasInternals.h @@ -44,15 +44,15 @@ typedef enum { XML_SCHEMAS_TOKEN, XML_SCHEMAS_LANGUAGE, XML_SCHEMAS_NMTOKEN, - XML_SCHEMAS_NMTOKENS, + XML_SCHEMAS_NMTOKENS, XML_SCHEMAS_NAME, XML_SCHEMAS_QNAME, XML_SCHEMAS_NCNAME, XML_SCHEMAS_ID, XML_SCHEMAS_IDREF, - XML_SCHEMAS_IDREFS, + XML_SCHEMAS_IDREFS, XML_SCHEMAS_ENTITY, - XML_SCHEMAS_ENTITIES, + XML_SCHEMAS_ENTITIES, XML_SCHEMAS_NOTATION, XML_SCHEMAS_ANYURI, XML_SCHEMAS_INTEGER, @@ -71,7 +71,7 @@ typedef enum { XML_SCHEMAS_HEXBINARY, XML_SCHEMAS_BASE64BINARY, XML_SCHEMAS_ANYTYPE, - XML_SCHEMAS_ANYSIMPLETYPE + XML_SCHEMAS_ANYSIMPLETYPE } xmlSchemaValType; /* @@ -149,25 +149,25 @@ struct _xmlSchemaAnnot { * Skip unknown attribute from validation * Obsolete, not used anymore. */ -#define XML_SCHEMAS_ANYATTR_SKIP 1 +#define XML_SCHEMAS_ANYATTR_SKIP 1 /** * XML_SCHEMAS_ANYATTR_LAX: * * Ignore validation non definition on attributes * Obsolete, not used anymore. */ -#define XML_SCHEMAS_ANYATTR_LAX 2 +#define XML_SCHEMAS_ANYATTR_LAX 2 /** * XML_SCHEMAS_ANYATTR_STRICT: * * Apply strict validation rules on attributes * Obsolete, not used anymore. */ -#define XML_SCHEMAS_ANYATTR_STRICT 3 +#define XML_SCHEMAS_ANYATTR_STRICT 3 /** * XML_SCHEMAS_ANY_SKIP: * - * Skip unknown attribute from validation + * Skip unknown attribute from validation */ #define XML_SCHEMAS_ANY_SKIP 1 /** @@ -214,20 +214,20 @@ struct _xmlSchemaAnnot { * * allow elements in no namespace */ -#define XML_SCHEMAS_ATTR_NSDEFAULT 1 << 7 +#define XML_SCHEMAS_ATTR_NSDEFAULT 1 << 7 /** - * XML_SCHEMAS_ATTR_NSDEFAULT: + * XML_SCHEMAS_ATTR_INTERNAL_RESOLVED: * - * this is set when the "type" and "ref" references + * this is set when the "type" and "ref" references * have been resolved. */ -#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED 1 << 8 +#define XML_SCHEMAS_ATTR_INTERNAL_RESOLVED 1 << 8 /** * XML_SCHEMAS_ATTR_FIXED: * * the attribute has a fixed value */ -#define XML_SCHEMAS_ATTR_FIXED 1 << 9 +#define XML_SCHEMAS_ATTR_FIXED 1 << 9 /** * xmlSchemaAttribute: @@ -237,8 +237,8 @@ struct _xmlSchemaAnnot { typedef struct _xmlSchemaAttribute xmlSchemaAttribute; typedef xmlSchemaAttribute *xmlSchemaAttributePtr; struct _xmlSchemaAttribute { - xmlSchemaTypeType type; /* The kind of type */ - struct _xmlSchemaAttribute *next;/* the next attribute if in a group ... */ + xmlSchemaTypeType type; /* The kind of type */ + struct _xmlSchemaAttribute *next;/* the next attribute if in a group ... */ const xmlChar *name; /* name of the declaration or empty if particle */ const xmlChar *id; const xmlChar *ref; /* the local name of the attribute decl. if a particle */ @@ -252,9 +252,11 @@ struct _xmlSchemaAttribute { const xmlChar *defValue; xmlSchemaTypePtr subtypes; /* the type definition */ xmlNodePtr node; - const xmlChar *targetNamespace; + const xmlChar *targetNamespace; int flags; const xmlChar *refPrefix; + xmlSchemaValPtr defVal; + xmlSchemaAttributePtr refDecl; }; /** @@ -318,6 +320,12 @@ struct _xmlSchemaWildcard { * The attribute wildcard has been already builded. */ #define XML_SCHEMAS_ATTRGROUP_GLOBAL 1 << 1 +/** + * XML_SCHEMAS_ATTRGROUP_MARKED: + * + * Marks the attr group as marked; used for circular checks. + */ +#define XML_SCHEMAS_ATTRGROUP_MARKED 1 << 2 /** * An attribute group definition. @@ -328,7 +336,7 @@ struct _xmlSchemaWildcard { typedef struct _xmlSchemaAttributeGroup xmlSchemaAttributeGroup; typedef xmlSchemaAttributeGroup *xmlSchemaAttributeGroupPtr; struct _xmlSchemaAttributeGroup { - xmlSchemaTypeType type; /* The kind of type */ + xmlSchemaTypeType type; /* The kind of type */ struct _xmlSchemaAttribute *next;/* the next attribute if in a group ... */ const xmlChar *name; const xmlChar *id; @@ -341,6 +349,7 @@ struct _xmlSchemaAttributeGroup { int flags; xmlSchemaWildcardPtr attributeWildcard; const xmlChar *refPrefix; + xmlSchemaAttributeGroupPtr refItem; /* The referenced attribute group */ }; /** @@ -371,7 +380,7 @@ struct _xmlSchemaFacetLink { * * the element content type is mixed */ -#define XML_SCHEMAS_TYPE_MIXED 1 << 0 +#define XML_SCHEMAS_TYPE_MIXED 1 << 0 /** * XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION: * @@ -457,6 +466,37 @@ struct _xmlSchemaFacetLink { * the simpleType has a final of "union". */ #define XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE 1 << 14 +/** + * XML_SCHEMAS_TYPE_MARKED + * + * Marks the item as marked; used for circular checks. + */ +#define XML_SCHEMAS_TYPE_MARKED 1 << 16 +/** + * XML_SCHEMAS_TYPE_BLOCK_DEFAULT: + * + * the complexType did not specify 'block' so use the default of the + * <schema> item. + */ +#define XML_SCHEMAS_TYPE_BLOCK_DEFAULT 1 << 17 +/** + * XML_SCHEMAS_TYPE_BLOCK_EXTENSION: + * + * the complexType has a 'block' of "extension". + */ +#define XML_SCHEMAS_TYPE_BLOCK_EXTENSION 1 << 18 +/** + * XML_SCHEMAS_TYPE_FINAL_RESTRICTION: + * + * the complexType has a 'block' of "restriction". + */ +#define XML_SCHEMAS_TYPE_BLOCK_RESTRICTION 1 << 19 +/** + * XML_SCHEMAS_TYPE_ABSTRACT: + * + * the simple/complexType is abstract. + */ +#define XML_SCHEMAS_TYPE_ABSTRACT 1 << 20 /** * _xmlSchemaType: @@ -464,7 +504,7 @@ struct _xmlSchemaFacetLink { * Schemas type definition. */ struct _xmlSchemaType { - xmlSchemaTypeType type; /* The kind of type */ + xmlSchemaTypeType type; /* The kind of type */ struct _xmlSchemaType *next;/* the next type if in a sequence ... */ const xmlChar *name; const xmlChar *id; @@ -481,7 +521,7 @@ struct _xmlSchemaType { xmlSchemaContentType contentType; const xmlChar *base; const xmlChar *baseNs; - xmlSchemaTypePtr baseType; + xmlSchemaTypePtr baseType; xmlSchemaFacetPtr facets; struct _xmlSchemaType *redef;/* possible redefinitions for the type */ int recurse; @@ -492,6 +532,7 @@ struct _xmlSchemaType { xmlSchemaFacetLinkPtr facetSet; const xmlChar *refPrefix; xmlSchemaTypePtr contentTypeDef; + xmlRegexpPtr contModel; }; /* @@ -506,112 +547,112 @@ struct _xmlSchemaType { * * the element is nillable */ -#define XML_SCHEMAS_ELEM_NILLABLE 1 << 0 +#define XML_SCHEMAS_ELEM_NILLABLE 1 << 0 /** * XML_SCHEMAS_ELEM_GLOBAL: * * the element is global */ -#define XML_SCHEMAS_ELEM_GLOBAL 1 << 1 +#define XML_SCHEMAS_ELEM_GLOBAL 1 << 1 /** * XML_SCHEMAS_ELEM_DEFAULT: * * the element has a default value */ -#define XML_SCHEMAS_ELEM_DEFAULT 1 << 2 +#define XML_SCHEMAS_ELEM_DEFAULT 1 << 2 /** * XML_SCHEMAS_ELEM_FIXED: * * the element has a fixed value */ -#define XML_SCHEMAS_ELEM_FIXED 1 << 3 +#define XML_SCHEMAS_ELEM_FIXED 1 << 3 /** * XML_SCHEMAS_ELEM_ABSTRACT: * * the element is abstract */ -#define XML_SCHEMAS_ELEM_ABSTRACT 1 << 4 +#define XML_SCHEMAS_ELEM_ABSTRACT 1 << 4 /** * XML_SCHEMAS_ELEM_TOPLEVEL: * * the element is top level * obsolete: use XML_SCHEMAS_ELEM_GLOBAL instead */ -#define XML_SCHEMAS_ELEM_TOPLEVEL 1 << 5 +#define XML_SCHEMAS_ELEM_TOPLEVEL 1 << 5 /** * XML_SCHEMAS_ELEM_REF: * * the element is a reference to a type */ -#define XML_SCHEMAS_ELEM_REF 1 << 6 +#define XML_SCHEMAS_ELEM_REF 1 << 6 /** * XML_SCHEMAS_ELEM_NSDEFAULT: * * allow elements in no namespace * Obsolete, not used anymore. */ -#define XML_SCHEMAS_ELEM_NSDEFAULT 1 << 7 +#define XML_SCHEMAS_ELEM_NSDEFAULT 1 << 7 /** * XML_SCHEMAS_ELEM_INTERNAL_RESOLVED * * this is set when "type", "ref", "substitutionGroup" * references have been resolved. */ -#define XML_SCHEMAS_ELEM_INTERNAL_RESOLVED 1 << 8 +#define XML_SCHEMAS_ELEM_INTERNAL_RESOLVED 1 << 8 /** * XML_SCHEMAS_ELEM_CIRCULAR * * a helper flag for the search of circular references. */ -#define XML_SCHEMAS_ELEM_CIRCULAR 1 << 9 +#define XML_SCHEMAS_ELEM_CIRCULAR 1 << 9 /** * XML_SCHEMAS_ELEM_BLOCK_ABSENT: * * the "block" attribute is absent */ -#define XML_SCHEMAS_ELEM_BLOCK_ABSENT 1 << 10 +#define XML_SCHEMAS_ELEM_BLOCK_ABSENT 1 << 10 /** * XML_SCHEMAS_ELEM_BLOCK_EXTENSION: * * disallowed substitutions are absent */ -#define XML_SCHEMAS_ELEM_BLOCK_EXTENSION 1 << 11 +#define XML_SCHEMAS_ELEM_BLOCK_EXTENSION 1 << 11 /** * XML_SCHEMAS_ELEM_BLOCK_RESTRICTION: * * disallowed substitutions: "restriction" */ -#define XML_SCHEMAS_ELEM_BLOCK_RESTRICTION 1 << 12 +#define XML_SCHEMAS_ELEM_BLOCK_RESTRICTION 1 << 12 /** * XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION: * * disallowed substitutions: "substituion" */ -#define XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION 1 << 13 +#define XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION 1 << 13 /** * XML_SCHEMAS_ELEM_FINAL_ABSENT: * * substitution group exclusions are absent */ -#define XML_SCHEMAS_ELEM_FINAL_ABSENT 1 << 14 +#define XML_SCHEMAS_ELEM_FINAL_ABSENT 1 << 14 /** * XML_SCHEMAS_ELEM_BLOCK_EXTENSION: * * substitution group exclusions: "extension" */ -#define XML_SCHEMAS_ELEM_FINAL_EXTENSION 1 << 15 +#define XML_SCHEMAS_ELEM_FINAL_EXTENSION 1 << 15 /** * XML_SCHEMAS_ELEM_BLOCK_RESTRICTION: * * substitution group exclusions: "restriction" */ -#define XML_SCHEMAS_ELEM_FINAL_RESTRICTION 1 << 16 +#define XML_SCHEMAS_ELEM_FINAL_RESTRICTION 1 << 16 typedef struct _xmlSchemaElement xmlSchemaElement; typedef xmlSchemaElement *xmlSchemaElementPtr; struct _xmlSchemaElement { - xmlSchemaTypeType type; /* The kind of type */ + xmlSchemaTypeType type; /* The kind of type */ struct _xmlSchemaType *next;/* the next type if in a sequence ... */ const xmlChar *name; const xmlChar *id; @@ -636,6 +677,7 @@ struct _xmlSchemaElement { xmlRegexpPtr contModel; xmlSchemaContentType contentType; const xmlChar *refPrefix; + xmlSchemaValPtr defVal; }; /* @@ -643,30 +685,30 @@ struct _xmlSchemaElement { * * unknown facet handling */ -#define XML_SCHEMAS_FACET_UNKNOWN 0 +#define XML_SCHEMAS_FACET_UNKNOWN 0 /* * XML_SCHEMAS_FACET_PRESERVE: * * preserve the type of the facet */ -#define XML_SCHEMAS_FACET_PRESERVE 1 +#define XML_SCHEMAS_FACET_PRESERVE 1 /* * XML_SCHEMAS_FACET_REPLACE: * * replace the type of the facet */ -#define XML_SCHEMAS_FACET_REPLACE 2 +#define XML_SCHEMAS_FACET_REPLACE 2 /* * XML_SCHEMAS_FACET_COLLAPSE: * * collapse the types of the facet */ -#define XML_SCHEMAS_FACET_COLLAPSE 3 +#define XML_SCHEMAS_FACET_COLLAPSE 3 /** * A facet definition. */ struct _xmlSchemaFacet { - xmlSchemaTypeType type; /* The kind of type */ + xmlSchemaTypeType type; /* The kind of type */ struct _xmlSchemaFacet *next;/* the next type if in a sequence ... */ const xmlChar *value; const xmlChar *id; @@ -684,7 +726,7 @@ struct _xmlSchemaFacet { typedef struct _xmlSchemaNotation xmlSchemaNotation; typedef xmlSchemaNotation *xmlSchemaNotationPtr; struct _xmlSchemaNotation { - xmlSchemaTypeType type; /* The kind of type */ + xmlSchemaTypeType type; /* The kind of type */ const xmlChar *name; xmlSchemaAnnotPtr annot; const xmlChar *identifier; @@ -695,62 +737,62 @@ struct _xmlSchemaNotation { * * the schema requires qualified elements */ -#define XML_SCHEMAS_QUALIF_ELEM 1 << 0 +#define XML_SCHEMAS_QUALIF_ELEM 1 << 0 /** * XML_SCHEMAS_QUALIF_ATTR: * * the schema requires qualified attributes */ -#define XML_SCHEMAS_QUALIF_ATTR 1 << 1 +#define XML_SCHEMAS_QUALIF_ATTR 1 << 1 /** * XML_SCHEMAS_FINAL_DEFAULT_EXTENSION: * * the schema has "extension" in the set of finalDefault. */ -#define XML_SCHEMAS_FINAL_DEFAULT_EXTENSION 1 << 2 +#define XML_SCHEMAS_FINAL_DEFAULT_EXTENSION 1 << 2 /** * XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION: * * the schema has "restriction" in the set of finalDefault. */ -#define XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION 1 << 3 +#define XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION 1 << 3 /** * XML_SCHEMAS_FINAL_DEFAULT_LIST: * * the cshema has "list" in the set of finalDefault. */ -#define XML_SCHEMAS_FINAL_DEFAULT_LIST 1 << 4 +#define XML_SCHEMAS_FINAL_DEFAULT_LIST 1 << 4 /** * XML_SCHEMAS_FINAL_DEFAULT_UNION: * * the schema has "union" in the set of finalDefault. */ -#define XML_SCHEMAS_FINAL_DEFAULT_UNION 1 << 5 +#define XML_SCHEMAS_FINAL_DEFAULT_UNION 1 << 5 /** * XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION: * * the schema has "extension" in the set of blockDefault. */ -#define XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION 1 << 6 +#define XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION 1 << 6 /** * XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION: * * the schema has "restriction" in the set of blockDefault. */ -#define XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION 1 << 7 +#define XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION 1 << 7 /** * XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION: * * the schema has "substitution" in the set of blockDefault. */ -#define XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION 1 << 8 +#define XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION 1 << 8 /** * XML_SCHEMAS_INCLUDING_CONVERT_NS: * * the schema is currently including an other schema with * no target namespace. */ -#define XML_SCHEMAS_INCLUDING_CONVERT_NS 1 << 9 +#define XML_SCHEMAS_INCLUDING_CONVERT_NS 1 << 9 /** * _xmlSchema: * @@ -773,15 +815,16 @@ struct _xmlSchema { xmlHashTablePtr schemasImports; - void *_private; /* unused by the library for users or bindings */ + void *_private; /* unused by the library for users or bindings */ xmlHashTablePtr groupDecl; xmlDictPtr dict; void *includes; /* the includes, this is opaque for now */ - int preserve; /* whether to free the document */ + int preserve; /* whether to free the document */ + int counter; /* used to give ononymous components unique names */ }; -XMLPUBFUN void XMLCALL xmlSchemaFreeType (xmlSchemaTypePtr type); -XMLPUBFUN void XMLCALL xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard); +XMLPUBFUN void XMLCALL xmlSchemaFreeType (xmlSchemaTypePtr type); +XMLPUBFUN void XMLCALL xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard); #ifdef __cplusplus } @@ -789,4 +832,3 @@ XMLPUBFUN void XMLCALL xmlSchemaFreeWildcard(xmlSchemaWildcardPtr wildcard); #endif /* LIBXML_SCHEMAS_ENABLED */ #endif /* __XML_SCHEMA_INTERNALS_H__ */ - diff --git a/include/libxml/xmlautomata.h b/include/libxml/xmlautomata.h index 16a1467..b1b9485 100644 --- a/include/libxml/xmlautomata.h +++ b/include/libxml/xmlautomata.h @@ -73,6 +73,15 @@ XMLPUBFUN xmlAutomataStatePtr XMLCALL int max, void *data); XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewCountTrans2 (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + int min, + int max, + void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL xmlAutomataNewOnceTrans (xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, @@ -80,6 +89,15 @@ XMLPUBFUN xmlAutomataStatePtr XMLCALL int min, int max, void *data); +XMLPUBFUN xmlAutomataStatePtr XMLCALL + xmlAutomataNewOnceTrans2 (xmlAutomataPtr am, + xmlAutomataStatePtr from, + xmlAutomataStatePtr to, + const xmlChar *token, + const xmlChar *token2, + int min, + int max, + void *data); XMLPUBFUN xmlAutomataStatePtr XMLCALL xmlAutomataNewAllTrans (xmlAutomataPtr am, xmlAutomataStatePtr from, diff --git a/include/libxml/xmlerror.h b/include/libxml/xmlerror.h index 2b72abc..a991256 100644 --- a/include/libxml/xmlerror.h +++ b/include/libxml/xmlerror.h @@ -530,122 +530,126 @@ typedef enum { XML_SCHEMAP_UNKNOWN_UNION_CHILD, /* 1754 */ XML_SCHEMAP_ELEM_DEFAULT_FIXED, /* 1755 */ XML_SCHEMAP_REGEXP_INVALID, /* 1756 */ - XML_SCHEMAP_FAILED_LOAD, /* 1756 */ - XML_SCHEMAP_NOTHING_TO_PARSE, /* 1757 */ - XML_SCHEMAP_NOROOT, /* 1758 */ - XML_SCHEMAP_REDEFINED_GROUP, /* 1759 */ - XML_SCHEMAP_REDEFINED_TYPE, /* 1760 */ - XML_SCHEMAP_REDEFINED_ELEMENT, /* 1761 */ - XML_SCHEMAP_REDEFINED_ATTRGROUP, /* 1762 */ - XML_SCHEMAP_REDEFINED_ATTR, /* 1763 */ - XML_SCHEMAP_REDEFINED_NOTATION, /* 1764 */ - XML_SCHEMAP_FAILED_PARSE, /* 1765 */ - XML_SCHEMAP_UNKNOWN_PREFIX, /* 1766 */ - XML_SCHEMAP_DEF_AND_PREFIX, /* 1767 */ - XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD, /* 1768 */ - XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI, /* 1769 */ - XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI, /* 1770 */ - XML_SCHEMAP_NOT_SCHEMA, /* 1771 */ - XML_SCHEMAP_UNKNOWN_MEMBER_TYPE, /* 1772 */ - XML_SCHEMAP_INVALID_ATTR_USE, /* 1773 */ - XML_SCHEMAP_RECURSIVE, /* 1774 */ - XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE, /* 1775 */ - XML_SCHEMAP_INVALID_ATTR_COMBINATION, /* 1776 */ - XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION, /* 1777 */ - XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD, /* 1778 */ - XML_SCHEMAP_INVALID_ATTR_NAME, /* 1779 */ - XML_SCHEMAP_REF_AND_CONTENT, /* 1780 */ - XML_SCHEMAP_CT_PROPS_CORRECT_1, /* 1781 */ - XML_SCHEMAP_CT_PROPS_CORRECT_2, /* 1782 */ - XML_SCHEMAP_CT_PROPS_CORRECT_3, /* 1783 */ - XML_SCHEMAP_CT_PROPS_CORRECT_4, /* 1784 */ - XML_SCHEMAP_CT_PROPS_CORRECT_5, /* 1785 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1, /* 1786 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1, /* 1787 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2, /* 1788 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2, /* 1789 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3, /* 1790 */ - XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER, /* 1791 */ - XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE, /* 1792 */ - XML_SCHEMAP_UNION_NOT_EXPRESSIBLE, /* 1793 */ - XML_SCHEMAP_SRC_IMPORT_3_1, /* 1794 */ - XML_SCHEMAP_SRC_IMPORT_3_2, /* 1795 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1, /* 1796 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2, /* 1797 */ - XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3, /* 1798 */ - XML_SCHEMAP_COS_CT_EXTENDS_1_3, /* 1799 */ - XML_SCHEMAV_NOROOT = 1800, - XML_SCHEMAV_UNDECLAREDELEM, /* 1801 */ - XML_SCHEMAV_NOTTOPLEVEL, /* 1802 */ - XML_SCHEMAV_MISSING, /* 1803 */ - XML_SCHEMAV_WRONGELEM, /* 1804 */ - XML_SCHEMAV_NOTYPE, /* 1805 */ - XML_SCHEMAV_NOROLLBACK, /* 1806 */ - XML_SCHEMAV_ISABSTRACT, /* 1807 */ - XML_SCHEMAV_NOTEMPTY, /* 1808 */ - XML_SCHEMAV_ELEMCONT, /* 1809 */ - XML_SCHEMAV_HAVEDEFAULT, /* 1810 */ - XML_SCHEMAV_NOTNILLABLE, /* 1811 */ - XML_SCHEMAV_EXTRACONTENT, /* 1812 */ - XML_SCHEMAV_INVALIDATTR, /* 1813 */ - XML_SCHEMAV_INVALIDELEM, /* 1814 */ - XML_SCHEMAV_NOTDETERMINIST, /* 1815 */ - XML_SCHEMAV_CONSTRUCT, /* 1816 */ - XML_SCHEMAV_INTERNAL, /* 1817 */ - XML_SCHEMAV_NOTSIMPLE, /* 1818 */ - XML_SCHEMAV_ATTRUNKNOWN, /* 1819 */ - XML_SCHEMAV_ATTRINVALID, /* 1820 */ - XML_SCHEMAV_VALUE, /* 1821 */ - XML_SCHEMAV_FACET, /* 1822 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, /* 1823 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2, /* 1824 */ - XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3, /* 1825 */ - XML_SCHEMAV_CVC_TYPE_3_1_1, /* 1826 */ - XML_SCHEMAV_CVC_TYPE_3_1_2, /* 1827 */ - XML_SCHEMAV_CVC_FACET_VALID, /* 1828 */ - XML_SCHEMAV_CVC_LENGTH_VALID, /* 1829 */ - XML_SCHEMAV_CVC_MINLENGTH_VALID, /* 1830 */ - XML_SCHEMAV_CVC_MAXLENGTH_VALID, /* 1831 */ - XML_SCHEMAV_CVC_MININCLUSIVE_VALID, /* 1832 */ - XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID, /* 1833 */ - XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID, /* 1834 */ - XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID, /* 1835 */ - XML_SCHEMAV_CVC_TOTALDIGITS_VALID, /* 1836 */ - XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID, /* 1837 */ - XML_SCHEMAV_CVC_PATTERN_VALID, /* 1838 */ - XML_SCHEMAV_CVC_ENUMERATION_VALID, /* 1839 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, /* 1840 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, /* 1841 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, /* 1842 */ - XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4, /* 1843 */ - XML_SCHEMAV_CVC_ELT_1, /* 1844 */ - XML_SCHEMAV_CVC_ELT_2, /* 1845 */ - XML_SCHEMAV_CVC_ELT_3_1, - XML_SCHEMAV_CVC_ELT_3_2_1, - XML_SCHEMAV_CVC_ELT_3_2_2, - XML_SCHEMAV_CVC_ELT_4_1, - XML_SCHEMAV_CVC_ELT_4_2, - XML_SCHEMAV_CVC_ELT_4_3, - XML_SCHEMAV_CVC_ELT_5_1_1, - XML_SCHEMAV_CVC_ELT_5_1_2, - XML_SCHEMAV_CVC_ELT_5_2_1, - XML_SCHEMAV_CVC_ELT_5_2_2_1, - XML_SCHEMAV_CVC_ELT_5_2_2_2_1, - XML_SCHEMAV_CVC_ELT_5_2_2_2_2, - XML_SCHEMAV_CVC_ELT_6, - XML_SCHEMAV_CVC_ELT_7, - XML_SCHEMAV_CVC_ATTRIBUTE_1, - XML_SCHEMAV_CVC_ATTRIBUTE_2, - XML_SCHEMAV_CVC_ATTRIBUTE_3, - XML_SCHEMAV_CVC_ATTRIBUTE_4, - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1, - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, - XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, - XML_SCHEMAV_CVC_COMPLEX_TYPE_4, - XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1, - XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2, - XML_SCHEMAV_ELEMENT_CONTENT, /* 1846 non-W3C */ - XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING, /* non-W3C */ + XML_SCHEMAP_FAILED_LOAD, /* 1757 */ + XML_SCHEMAP_NOTHING_TO_PARSE, /* 1758 */ + XML_SCHEMAP_NOROOT, /* 1759 */ + XML_SCHEMAP_REDEFINED_GROUP, /* 1760 */ + XML_SCHEMAP_REDEFINED_TYPE, /* 1761 */ + XML_SCHEMAP_REDEFINED_ELEMENT, /* 1762 */ + XML_SCHEMAP_REDEFINED_ATTRGROUP, /* 1763 */ + XML_SCHEMAP_REDEFINED_ATTR, /* 1764 */ + XML_SCHEMAP_REDEFINED_NOTATION, /* 1765 */ + XML_SCHEMAP_FAILED_PARSE, /* 1766 */ + XML_SCHEMAP_UNKNOWN_PREFIX, /* 1767 */ + XML_SCHEMAP_DEF_AND_PREFIX, /* 1768 */ + XML_SCHEMAP_UNKNOWN_INCLUDE_CHILD, /* 1769 */ + XML_SCHEMAP_INCLUDE_SCHEMA_NOT_URI, /* 1770 */ + XML_SCHEMAP_INCLUDE_SCHEMA_NO_URI, /* 1771 */ + XML_SCHEMAP_NOT_SCHEMA, /* 1772 */ + XML_SCHEMAP_UNKNOWN_MEMBER_TYPE, /* 1773 */ + XML_SCHEMAP_INVALID_ATTR_USE, /* 1774 */ + XML_SCHEMAP_RECURSIVE, /* 1775 */ + XML_SCHEMAP_SUPERNUMEROUS_LIST_ITEM_TYPE, /* 1776 */ + XML_SCHEMAP_INVALID_ATTR_COMBINATION, /* 1777 */ + XML_SCHEMAP_INVALID_ATTR_INLINE_COMBINATION, /* 1778 */ + XML_SCHEMAP_MISSING_SIMPLETYPE_CHILD, /* 1779 */ + XML_SCHEMAP_INVALID_ATTR_NAME, /* 1780 */ + XML_SCHEMAP_REF_AND_CONTENT, /* 1781 */ + XML_SCHEMAP_CT_PROPS_CORRECT_1, /* 1782 */ + XML_SCHEMAP_CT_PROPS_CORRECT_2, /* 1783 */ + XML_SCHEMAP_CT_PROPS_CORRECT_3, /* 1784 */ + XML_SCHEMAP_CT_PROPS_CORRECT_4, /* 1785 */ + XML_SCHEMAP_CT_PROPS_CORRECT_5, /* 1786 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1, /* 1787 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1, /* 1788 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_2, /* 1789 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_2, /* 1790 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_3, /* 1791 */ + XML_SCHEMAP_WILDCARD_INVALID_NS_MEMBER, /* 1792 */ + XML_SCHEMAP_INTERSECTION_NOT_EXPRESSIBLE, /* 1793 */ + XML_SCHEMAP_UNION_NOT_EXPRESSIBLE, /* 1794 */ + XML_SCHEMAP_SRC_IMPORT_3_1, /* 1795 */ + XML_SCHEMAP_SRC_IMPORT_3_2, /* 1796 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_1, /* 1797 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_2, /* 1798 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_4_3, /* 1799 */ + XML_SCHEMAP_COS_CT_EXTENDS_1_3, /* 1800 */ + XML_SCHEMAV_NOROOT = 1801, + XML_SCHEMAV_UNDECLAREDELEM, /* 1802 */ + XML_SCHEMAV_NOTTOPLEVEL, /* 1803 */ + XML_SCHEMAV_MISSING, /* 1804 */ + XML_SCHEMAV_WRONGELEM, /* 1805 */ + XML_SCHEMAV_NOTYPE, /* 1806 */ + XML_SCHEMAV_NOROLLBACK, /* 1807 */ + XML_SCHEMAV_ISABSTRACT, /* 1808 */ + XML_SCHEMAV_NOTEMPTY, /* 1809 */ + XML_SCHEMAV_ELEMCONT, /* 1810 */ + XML_SCHEMAV_HAVEDEFAULT, /* 1811 */ + XML_SCHEMAV_NOTNILLABLE, /* 1812 */ + XML_SCHEMAV_EXTRACONTENT, /* 1813 */ + XML_SCHEMAV_INVALIDATTR, /* 1814 */ + XML_SCHEMAV_INVALIDELEM, /* 1815 */ + XML_SCHEMAV_NOTDETERMINIST, /* 1816 */ + XML_SCHEMAV_CONSTRUCT, /* 1817 */ + XML_SCHEMAV_INTERNAL, /* 1818 */ + XML_SCHEMAV_NOTSIMPLE, /* 1819 */ + XML_SCHEMAV_ATTRUNKNOWN, /* 1820 */ + XML_SCHEMAV_ATTRINVALID, /* 1821 */ + XML_SCHEMAV_VALUE, /* 1822 */ + XML_SCHEMAV_FACET, /* 1823 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, /* 1824 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2, /* 1825 */ + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3, /* 1826 */ + XML_SCHEMAV_CVC_TYPE_3_1_1, /* 1827 */ + XML_SCHEMAV_CVC_TYPE_3_1_2, /* 1828 */ + XML_SCHEMAV_CVC_FACET_VALID, /* 1829 */ + XML_SCHEMAV_CVC_LENGTH_VALID, /* 1830 */ + XML_SCHEMAV_CVC_MINLENGTH_VALID, /* 1831 */ + XML_SCHEMAV_CVC_MAXLENGTH_VALID, /* 1832 */ + XML_SCHEMAV_CVC_MININCLUSIVE_VALID, /* 1833 */ + XML_SCHEMAV_CVC_MAXINCLUSIVE_VALID, /* 1834 */ + XML_SCHEMAV_CVC_MINEXCLUSIVE_VALID, /* 1835 */ + XML_SCHEMAV_CVC_MAXEXCLUSIVE_VALID, /* 1836 */ + XML_SCHEMAV_CVC_TOTALDIGITS_VALID, /* 1837 */ + XML_SCHEMAV_CVC_FRACTIONDIGITS_VALID, /* 1838 */ + XML_SCHEMAV_CVC_PATTERN_VALID, /* 1839 */ + XML_SCHEMAV_CVC_ENUMERATION_VALID, /* 1840 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, /* 1841 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, /* 1842 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, /* 1843 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_2_4, /* 1844 */ + XML_SCHEMAV_CVC_ELT_1, /* 1845 */ + XML_SCHEMAV_CVC_ELT_2, /* 1846 */ + XML_SCHEMAV_CVC_ELT_3_1, /* 1847 */ + XML_SCHEMAV_CVC_ELT_3_2_1, /* 1848 */ + XML_SCHEMAV_CVC_ELT_3_2_2, /* 1849 */ + XML_SCHEMAV_CVC_ELT_4_1, /* 1850 */ + XML_SCHEMAV_CVC_ELT_4_2, /* 1851 */ + XML_SCHEMAV_CVC_ELT_4_3, /* 1852 */ + XML_SCHEMAV_CVC_ELT_5_1_1, /* 1853 */ + XML_SCHEMAV_CVC_ELT_5_1_2, /* 1854 */ + XML_SCHEMAV_CVC_ELT_5_2_1, /* 1855 */ + XML_SCHEMAV_CVC_ELT_5_2_2_1, /* 1856 */ + XML_SCHEMAV_CVC_ELT_5_2_2_2_1, /* 1857 */ + XML_SCHEMAV_CVC_ELT_5_2_2_2_2, /* 1858 */ + XML_SCHEMAV_CVC_ELT_6, /* 1859 */ + XML_SCHEMAV_CVC_ELT_7, /* 1860 */ + XML_SCHEMAV_CVC_ATTRIBUTE_1, /* 1861 */ + XML_SCHEMAV_CVC_ATTRIBUTE_2, /* 1862 */ + XML_SCHEMAV_CVC_ATTRIBUTE_3, /* 1863 */ + XML_SCHEMAV_CVC_ATTRIBUTE_4, /* 1864 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_1, /* 1865 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, /* 1866 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_2, /* 1867 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_4, /* 1868 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_5_1, /* 1869 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_5_2, /* 1870 */ + XML_SCHEMAV_ELEMENT_CONTENT, /* 1871 */ + XML_SCHEMAV_DOCUMENT_ELEMENT_MISSING, /* 1872 */ + XML_SCHEMAV_CVC_COMPLEX_TYPE_1, /* 1873 */ + XML_SCHEMAV_CVC_AU, /* 1874 */ + XML_SCHEMAV_CVC_TYPE_1, /* 1875 */ + XML_SCHEMAV_CVC_TYPE_2, /* 1876 */ XML_XPTR_UNKNOWN_SCHEME = 1900, XML_XPTR_CHILDSEQ_START, /* 1901 */ XML_XPTR_EVAL_FAILED, /* 1902 */ @@ -718,19 +722,28 @@ typedef enum { XML_SCHEMAP_SRC_ATTRIBUTE_4, /* 3055 */ XML_SCHEMAP_NO_XMLNS, /* 3056 */ XML_SCHEMAP_NO_XSI, /* 3057 */ - XML_SCHEMAP_COS_VALID_DEFAULT_1, - XML_SCHEMAP_COS_VALID_DEFAULT_2_1, - XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1, - XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2, - XML_SCHEMAP_CVC_SIMPLE_TYPE, - XML_SCHEMAP_COS_CT_EXTENDS_1_1, - XML_SCHEMAP_SRC_IMPORT_1_1, - XML_SCHEMAP_SRC_IMPORT_1_2, - XML_SCHEMAP_SRC_IMPORT_2, - XML_SCHEMAP_SRC_IMPORT_2_1, - XML_SCHEMAP_SRC_IMPORT_2_2, - XML_SCHEMAP_INTERNAL, /* non-W3C */ - XML_SCHEMAP_NOT_DETERMINISTIC /* non-W3C */ + XML_SCHEMAP_COS_VALID_DEFAULT_1, /* 3058 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_1, /* 3059 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_2_1, /* 3060 */ + XML_SCHEMAP_COS_VALID_DEFAULT_2_2_2, /* 3061 */ + XML_SCHEMAP_CVC_SIMPLE_TYPE, /* 3062 */ + XML_SCHEMAP_COS_CT_EXTENDS_1_1, /* 3063 */ + XML_SCHEMAP_SRC_IMPORT_1_1, /* 3064 */ + XML_SCHEMAP_SRC_IMPORT_1_2, /* 3065 */ + XML_SCHEMAP_SRC_IMPORT_2, /* 3066 */ + XML_SCHEMAP_SRC_IMPORT_2_1, /* 3067 */ + XML_SCHEMAP_SRC_IMPORT_2_2, /* 3068 */ + XML_SCHEMAP_INTERNAL, /* 3069 non-W3C */ + XML_SCHEMAP_NOT_DETERMINISTIC, /* 3070 non-W3C */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_1, /* 3071 */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_2, /* 3072 */ + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3, /* 3073 */ + XML_SCHEMAP_MG_PROPS_CORRECT_1, /* 3074 */ + XML_SCHEMAP_MG_PROPS_CORRECT_2, /* 3075 */ + XML_SCHEMAP_SRC_CT_1, /* 3076 */ + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3, /* 3077 */ + XML_SCHEMAP_AU_PROPS_CORRECT_2, /* 3078 */ + XML_SCHEMAP_A_PROPS_CORRECT_2 } xmlParserErrors; /** diff --git a/include/libxml/xmlschemas.h b/include/libxml/xmlschemas.h index baf5dbf..0af2be5 100644 --- a/include/libxml/xmlschemas.h +++ b/include/libxml/xmlschemas.h @@ -54,6 +54,29 @@ typedef enum { XML_SCHEMAS_ERR_XXX } xmlSchemaValidError; +/* +* ATTENTION: Change xmlSchemaSetValidOptions's check +* for invalid values, if adding to the validation +* options below. +*/ +/** + * xmlSchemaValidOption: + * + * This is the set of XML Schema validation options. + */ +typedef enum { + XML_SCHEMA_VAL_VC_I_CREATE = 1<<0 + /* Default/fixed: create an attribute node + * or an element's text node on the instance. + */ +} xmlSchemaValidOption; + +/* + XML_SCHEMA_VAL_XSI_ASSEMBLE = 1<<1, + * assemble schemata using + * xsi:schemaLocation and + * xsi:noNamespaceSchemaLocation +*/ /** * The schemas related types are kept internal @@ -113,10 +136,15 @@ XMLPUBFUN void XMLCALL xmlSchemaValidityWarningFunc warn, void *ctx); XMLPUBFUN int XMLCALL - xmlSchemaGetValidErrors (xmlSchemaValidCtxtPtr ctxt, - xmlSchemaValidityErrorFunc *err, - xmlSchemaValidityWarningFunc *warn, - void **ctx); + xmlSchemaGetValidErrors (xmlSchemaValidCtxtPtr ctxt, + xmlSchemaValidityErrorFunc *err, + xmlSchemaValidityWarningFunc *warn, + void **ctx); +XMLPUBFUN int XMLCALL + xmlSchemaSetValidOptions (xmlSchemaValidCtxtPtr ctxt, + int options); +XMLPUBFUN int XMLCALL + xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt); XMLPUBFUN xmlSchemaValidCtxtPtr XMLCALL xmlSchemaNewValidCtxt (xmlSchemaPtr schema); @@ -125,6 +153,9 @@ XMLPUBFUN void XMLCALL XMLPUBFUN int XMLCALL xmlSchemaValidateDoc (xmlSchemaValidCtxtPtr ctxt, xmlDocPtr instance); +XMLPUBFUN int XMLCALL + xmlSchemaValidateOneElement (xmlSchemaValidCtxtPtr ctxt, + xmlNodePtr elem); XMLPUBFUN int XMLCALL xmlSchemaValidateStream (xmlSchemaValidCtxtPtr ctxt, xmlParserInputBufferPtr input, diff --git a/include/libxml/xmlschemastypes.h b/include/libxml/xmlschemastypes.h index 9b0d557..dca586a 100644 --- a/include/libxml/xmlschemastypes.h +++ b/include/libxml/xmlschemastypes.h @@ -43,7 +43,7 @@ XMLPUBFUN int XMLCALL xmlSchemaValidateFacet (xmlSchemaTypePtr base, xmlSchemaFacetPtr facet, const xmlChar *value, - xmlSchemaValPtr val); + xmlSchemaValPtr val); XMLPUBFUN void XMLCALL xmlSchemaFreeValue (xmlSchemaValPtr val); XMLPUBFUN xmlSchemaFacetPtr XMLCALL diff --git a/include/libxml/xmlversion.h b/include/libxml/xmlversion.h index cbc44d8..2e026a7 100644 --- a/include/libxml/xmlversion.h +++ b/include/libxml/xmlversion.h @@ -29,28 +29,28 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * * the version string like "1.2.3" */ -#define LIBXML_DOTTED_VERSION "2.6.13" +#define LIBXML_DOTTED_VERSION "2.6.14" /** * LIBXML_VERSION: * * the version number: 1.2.3 value is 1002003 */ -#define LIBXML_VERSION 20613 +#define LIBXML_VERSION 20614 /** * LIBXML_VERSION_STRING: * * the version number string, 1.2.3 value is "1002003" */ -#define LIBXML_VERSION_STRING "20613" +#define LIBXML_VERSION_STRING "20614" /** * LIBXML_VERSION_EXTRA: * * extra version information, used to show a CVS compilation */ -#define LIBXML_VERSION_EXTRA "-CVS2151" +#define LIBXML_VERSION_EXTRA "-CVS2183" /** * LIBXML_TEST_VERSION: @@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * Macro to check that the libxml version in use is compatible with * the version the software has been compiled against */ -#define LIBXML_TEST_VERSION xmlCheckVersion(20613); +#define LIBXML_TEST_VERSION xmlCheckVersion(20614); #ifndef VMS #if 0 @@ -27,6 +27,7 @@ void xmlUpgradeOldNs(xmlDocPtr doc); * * ************************************************************************/ +#ifdef LIBXML_HTML_ENABLED xmlChar *htmlDecodeEntities(htmlParserCtxtPtr ctxt, int len, xmlChar end, xmlChar end2, xmlChar end3); @@ -60,6 +61,7 @@ htmlDecodeEntities(htmlParserCtxtPtr ctxt ATTRIBUTE_UNUSED, } return (NULL); } +#endif /** * xmlInitializePredefinedEntities: diff --git a/libxml2.spec b/libxml2.spec index c6dde93..3670ef9 100644 --- a/libxml2.spec +++ b/libxml2.spec @@ -1,6 +1,6 @@ Summary: Library providing XML and HTML support Name: libxml2 -Version: 2.6.13 +Version: 2.6.14 Release: 1 License: MIT Group: Development/Libraries @@ -159,8 +159,8 @@ rm -fr %{buildroot} %doc doc/python.html %changelog -* Tue Aug 31 2004 Daniel Veillard <veillard@redhat.com> -- upstream release 2.6.13 see http://xmlsoft.org/news.html +* Wed Sep 29 2004 Daniel Veillard <veillard@redhat.com> +- upstream release 2.6.14 see http://xmlsoft.org/news.html * Thu Jan 2 2003 Daniel Veillard <veillard@redhat.com> - integrated drv_libxml2 xml.sax driver from Stéphane Bidoul @@ -159,7 +159,6 @@ static int proxyPort; /* the proxy port if any */ static unsigned int timeout = 60;/* the select() timeout in seconds */ static int xmlNanoHTTPFetchContent( void * ctx, char ** ptr, int * len ); -int xmlNanoHTTPContentLength( void * ctx ); /** * xmlHTTPErrMemory: @@ -645,8 +645,8 @@ xmlAddDefAttrs(xmlParserCtxtPtr ctxt, } /* - * plit the element name into prefix:localname , the string found - * are within the DTD and hen not associated to namespace names. + * split the element name into prefix:localname , the string found + * are within the DTD and then not associated to namespace names. */ name = xmlSplitQName3(fullname, &len); if (name == NULL) { @@ -663,17 +663,20 @@ xmlAddDefAttrs(xmlParserCtxtPtr ctxt, defaults = xmlHashLookup2(ctxt->attsDefault, name, prefix); if (defaults == NULL) { defaults = (xmlDefAttrsPtr) xmlMalloc(sizeof(xmlDefAttrs) + - 12 * sizeof(const xmlChar *)); + (4 * 4) * sizeof(const xmlChar *)); if (defaults == NULL) goto mem_error; - defaults->maxAttrs = 4; defaults->nbAttrs = 0; + defaults->maxAttrs = 4; xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, defaults, NULL); } else if (defaults->nbAttrs >= defaults->maxAttrs) { - defaults = (xmlDefAttrsPtr) xmlRealloc(defaults, sizeof(xmlDefAttrs) + + xmlDefAttrsPtr temp; + + temp = (xmlDefAttrsPtr) xmlRealloc(defaults, sizeof(xmlDefAttrs) + (2 * defaults->maxAttrs * 4) * sizeof(const xmlChar *)); - if (defaults == NULL) + if (temp == NULL) goto mem_error; + defaults = temp; defaults->maxAttrs *= 2; xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, defaults, NULL); } @@ -943,7 +946,7 @@ mem_error: * * Returns 0 in case of error, the index in the stack otherwise */ -extern int +int inputPush(xmlParserCtxtPtr ctxt, xmlParserInputPtr value) { if (ctxt->inputNr >= ctxt->inputMax) { @@ -969,7 +972,7 @@ inputPush(xmlParserCtxtPtr ctxt, xmlParserInputPtr value) * * Returns the input just removed */ -extern xmlParserInputPtr +xmlParserInputPtr inputPop(xmlParserCtxtPtr ctxt) { xmlParserInputPtr ret; @@ -994,7 +997,7 @@ inputPop(xmlParserCtxtPtr ctxt) * * Returns 0 in case of error, the index in the stack otherwise */ -extern int +int nodePush(xmlParserCtxtPtr ctxt, xmlNodePtr value) { if (ctxt->nodeNr >= ctxt->nodeMax) { @@ -1027,7 +1030,7 @@ nodePush(xmlParserCtxtPtr ctxt, xmlNodePtr value) * * Returns the node just removed */ -extern xmlNodePtr +xmlNodePtr nodePop(xmlParserCtxtPtr ctxt) { xmlNodePtr ret; @@ -1126,7 +1129,7 @@ nameNsPop(xmlParserCtxtPtr ctxt) * * Returns -1 in case of error, the index in the stack otherwise */ -extern int +int namePush(xmlParserCtxtPtr ctxt, const xmlChar * value) { if (ctxt->nameNr >= ctxt->nameMax) { @@ -1156,7 +1159,7 @@ mem_error: * * Returns the name just removed */ -extern const xmlChar * +const xmlChar * namePop(xmlParserCtxtPtr ctxt) { const xmlChar *ret; @@ -2212,13 +2215,17 @@ xmlSplitQName(xmlParserCtxtPtr ctxt, const xmlChar *name, xmlChar **prefix) { memcpy(buffer, buf, len); while ((c != 0) && (c != ':')) { /* tested bigname.xml */ if (len + 10 > max) { + xmlChar *tmp; + max *= 2; - buffer = (xmlChar *) xmlRealloc(buffer, + tmp = (xmlChar *) xmlRealloc(buffer, max * sizeof(xmlChar)); - if (buffer == NULL) { + if (tmp == NULL) { + xmlFree(tmp); xmlErrMemory(ctxt, NULL); return(NULL); } + buffer = tmp; } buffer[len++] = c; c = *cur++; @@ -2285,13 +2292,17 @@ xmlSplitQName(xmlParserCtxtPtr ctxt, const xmlChar *name, xmlChar **prefix) { memcpy(buffer, buf, len); while (c != 0) { /* tested bigname2.xml */ if (len + 10 > max) { + xmlChar *tmp; + max *= 2; - buffer = (xmlChar *) xmlRealloc(buffer, + tmp = (xmlChar *) xmlRealloc(buffer, max * sizeof(xmlChar)); - if (buffer == NULL) { + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buffer); return(NULL); } + buffer = tmp; } buffer[len++] = c; c = *cur++; @@ -2331,7 +2342,7 @@ static xmlChar * xmlParseAttValueInternal(xmlParserCtxtPtr ctxt, * * [5] Name ::= (Letter | '_' | ':') (NameChar)* * - * [6] Names ::= Name (S Name)* + * [6] Names ::= Name (#x20 Name)* * * Returns the Name parsed or NULL */ @@ -2456,7 +2467,7 @@ xmlParseNameComplex(xmlParserCtxtPtr ctxt) { * * [5] Name ::= (Letter | '_' | ':') (NameChar)* * - * [6] Names ::= Name (S Name)* + * [6] Names ::= Name (#x20 Name)* * * Returns the Name parsed or NULL. The @str pointer * is updated to the current location in the string. @@ -2504,13 +2515,16 @@ xmlParseStringName(xmlParserCtxtPtr ctxt, const xmlChar** str) { (IS_COMBINING(c)) || (IS_EXTENDER(c))) { if (len + 10 > max) { + xmlChar *tmp; max *= 2; - buffer = (xmlChar *) xmlRealloc(buffer, + tmp = (xmlChar *) xmlRealloc(buffer, max * sizeof(xmlChar)); - if (buffer == NULL) { + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buffer); return(NULL); } + buffer = tmp; } COPY_BUF(l,buffer,len,c); cur += l; @@ -2533,7 +2547,7 @@ xmlParseStringName(xmlParserCtxtPtr ctxt, const xmlChar** str) { * * [7] Nmtoken ::= (NameChar)+ * - * [8] Nmtokens ::= Nmtoken (S Nmtoken)* + * [8] Nmtokens ::= Nmtoken (#x20 Nmtoken)* * * Returns the Nmtoken parsed or NULL */ @@ -2584,13 +2598,17 @@ xmlParseNmtoken(xmlParserCtxtPtr ctxt) { GROW; } if (len + 10 > max) { + xmlChar *tmp; + max *= 2; - buffer = (xmlChar *) xmlRealloc(buffer, + tmp = (xmlChar *) xmlRealloc(buffer, max * sizeof(xmlChar)); - if (buffer == NULL) { + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buffer); return(NULL); } + buffer = tmp; } COPY_BUF(l,buffer,len,c); NEXTL(l); @@ -2662,12 +2680,16 @@ xmlParseEntityValue(xmlParserCtxtPtr ctxt, xmlChar **orig) { while ((IS_CHAR(c)) && ((c != stop) || /* checked */ (ctxt->input != input))) { if (len + 5 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buf); return(NULL); } + buf = tmp; } COPY_BUF(l,buf,len,c); NEXTL(l); @@ -3015,13 +3037,17 @@ xmlParseSystemLiteral(xmlParserCtxtPtr ctxt) { cur = CUR_CHAR(l); while ((IS_CHAR(cur)) && (cur != stop)) { /* checked */ if (len + 5 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { + xmlFree(buf); xmlErrMemory(ctxt, NULL); ctxt->instate = (xmlParserInputState) state; return(NULL); } + buf = tmp; } count++; if (count > 50) { @@ -3088,12 +3114,16 @@ xmlParsePubidLiteral(xmlParserCtxtPtr ctxt) { cur = CUR; while ((IS_PUBIDCHAR_CH(cur)) && (cur != stop)) { /* checked */ if (len + 1 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buf); return(NULL); } + buf = tmp; } buf[len++] = cur; count++; @@ -3702,13 +3732,17 @@ xmlParsePI(xmlParserCtxtPtr ctxt) { while (IS_CHAR(cur) && /* checked */ ((cur != '?') || (NXT(1) != '>'))) { if (len + 5 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buf); ctxt->instate = state; return; } + buf = tmp; } count++; if (count > 50) { @@ -7437,6 +7471,7 @@ failed: if (!IS_BLANK_CH(RAW)) { xmlFatalErrMsg(ctxt, XML_ERR_SPACE_REQUIRED, "attributes construct error\n"); + break; } SKIP_BLANKS; if ((cons == ctxt->input->consumed) && (q == CUR_PTR) && @@ -7635,8 +7670,7 @@ xmlParseEndTag2(xmlParserCtxtPtr ctxt, const xmlChar *prefix, } SKIP(2); - if ((tlen > 0) && (strncmp(ctxt->input->cur, - (const char *)ctxt->name, tlen) == 0)) { + if ((tlen > 0) && (xmlStrncmp(ctxt->input->cur, ctxt->name, tlen) == 0)) { if (ctxt->input->cur[tlen] == '>') { ctxt->input->cur += tlen + 1; goto done; @@ -7741,12 +7775,16 @@ xmlParseCDSect(xmlParserCtxtPtr ctxt) { while (IS_CHAR(cur) && ((r != ']') || (s != ']') || (cur != '>'))) { if (len + 5 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { + xmlFree(buf); xmlErrMemory(ctxt, NULL); return; } + buf = tmp; } COPY_BUF(rl,buf,len,r); r = s; @@ -8059,12 +8097,15 @@ xmlParseVersionNum(xmlParserCtxtPtr ctxt) { (cur == '_') || (cur == '.') || (cur == ':') || (cur == '-')) { if (len + 1 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); return(NULL); } + buf = tmp; } buf[len++] = cur; NEXT; @@ -8156,12 +8197,16 @@ xmlParseEncName(xmlParserCtxtPtr ctxt) { (cur == '.') || (cur == '_') || (cur == '-')) { if (len + 1 >= size) { + xmlChar *tmp; + size *= 2; - buf = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); - if (buf == NULL) { + tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar)); + if (tmp == NULL) { xmlErrMemory(ctxt, NULL); + xmlFree(buf); return(NULL); } + buf = tmp; } buf[len++] = cur; NEXT; diff --git a/python/Makefile.in b/python/Makefile.in index f1fed8a..a1054fc 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -226,6 +226,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -233,6 +234,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ diff --git a/python/drv_libxml2.py b/python/drv_libxml2.py index 421f945..e43fb1d 100644 --- a/python/drv_libxml2.py +++ b/python/drv_libxml2.py @@ -38,7 +38,6 @@ __author__ = u"Stéphane Bidoul <sbi@skynet.be>" __version__ = "0.3" import codecs -import sys from types import StringType, UnicodeType StringTypes = (StringType,UnicodeType) @@ -100,6 +99,7 @@ class LibXml2Reader(xmlreader.XMLReader): self.__ns = 0 self.__nspfx = 0 self.__validate = 0 + self.__extparams = 1 # parsing flag self.__parsing = 0 # additional handlers @@ -142,10 +142,13 @@ class LibXml2Reader(xmlreader.XMLReader): reader = input.newTextReader(source.getSystemId()) reader.SetErrorHandler(self._errorHandler,None) # configure reader - reader.SetParserProp(libxml2.PARSER_LOADDTD,1) - reader.SetParserProp(libxml2.PARSER_DEFAULTATTRS,1) - reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1) - reader.SetParserProp(libxml2.PARSER_VALIDATE,self.__validate) + if self.__extparams: + reader.SetParserProp(libxml2.PARSER_LOADDTD,1) + reader.SetParserProp(libxml2.PARSER_DEFAULTATTRS,1) + reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1) + reader.SetParserProp(libxml2.PARSER_VALIDATE,self.__validate) + else: + reader.SetParserProp(libxml2.PARSER_LOADDTD, 0) # we reuse attribute maps (for a slight performance gain) if self.__ns: attributesNSImpl = xmlreader.AttributesNSImpl({},{}) @@ -316,7 +319,7 @@ class LibXml2Reader(xmlreader.XMLReader): elif name == feature_external_ges: return 1 # TODO (does that relate to PARSER_LOADDTD)? elif name == feature_external_pes: - return 1 # TODO (does that relate to PARSER_LOADDTD)? + return self.__extparams else: raise SAXNotRecognizedException("Feature '%s' not recognized" % \ name) @@ -337,10 +340,7 @@ class LibXml2Reader(xmlreader.XMLReader): raise SAXNotSupportedException("Feature '%s' not supported" % \ name) elif name == feature_external_pes: - if state == 0: - # TODO (does that relate to PARSER_LOADDTD)? - raise SAXNotSupportedException("Feature '%s' not supported" % \ - name) + self.__extparams = state else: raise SAXNotRecognizedException("Feature '%s' not recognized" % \ name) diff --git a/python/libxml.py b/python/libxml.py index 1036bd9..588e862 100644 --- a/python/libxml.py +++ b/python/libxml.py @@ -1,28 +1,31 @@ import libxml2mod import types +# The root of all libxml2 errors. +class libxmlError(Exception): pass + # # Errors raised by the wrappers when some tree handling failed. # -class treeError: +class treeError(libxmlError): def __init__(self, msg): self.msg = msg def __str__(self): return self.msg -class parserError: +class parserError(libxmlError): def __init__(self, msg): self.msg = msg def __str__(self): return self.msg -class uriError: +class uriError(libxmlError): def __init__(self, msg): self.msg = msg def __str__(self): return self.msg -class xpathError: +class xpathError(libxmlError): def __init__(self, msg): self.msg = msg def __str__(self): diff --git a/python/libxml2-py.c b/python/libxml2-py.c index b562abf..1a4ba1d 100644 --- a/python/libxml2-py.c +++ b/python/libxml2-py.c @@ -156,25 +156,6 @@ libxml_xmlTextReaderExpand(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { } PyObject * -libxml_xmlAddSibling(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { - PyObject *py_retval; - xmlNodePtr c_retval; - xmlNodePtr cur; - PyObject *pyobj_cur; - xmlNodePtr elem; - PyObject *pyobj_elem; - - if (!PyArg_ParseTuple(args, (char *)"OO:xmlAddSibling", &pyobj_cur, &pyobj_elem)) - return(NULL); - cur = (xmlNodePtr) PyxmlNode_Get(pyobj_cur); - elem = (xmlNodePtr) PyxmlNode_Get(pyobj_elem); - - c_retval = xmlAddSibling(cur, elem); - py_retval = libxml_xmlNodePtrWrap((xmlNodePtr) c_retval); - return(py_retval); -} - -PyObject * libxml_xmlScanName(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; xmlChar * c_retval; @@ -501,6 +482,25 @@ libxml_xmlCheckLanguageID(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { return(py_retval); } +#ifdef LIBXML_SCHEMAS_ENABLED +PyObject * +libxml_xmlSchemaSetValidOptions(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + int c_retval; + xmlSchemaValidCtxtPtr ctxt; + PyObject *pyobj_ctxt; + int options; + + if (!PyArg_ParseTuple(args, (char *)"Oi:xmlSchemaSetValidOptions", &pyobj_ctxt, &options)) + return(NULL); + ctxt = (xmlSchemaValidCtxtPtr) PySchemaValidCtxt_Get(pyobj_ctxt); + + c_retval = xmlSchemaSetValidOptions(ctxt, options); + py_retval = libxml_intWrap((int) c_retval); + return(py_retval); +} + +#endif /* LIBXML_SCHEMAS_ENABLED */ PyObject * libxml_xmlFreeNs(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { xmlNsPtr cur; @@ -621,6 +621,25 @@ libxml_xmlParserGetDoc(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { } PyObject * +libxml_xmlAddSibling(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + xmlNodePtr c_retval; + xmlNodePtr cur; + PyObject *pyobj_cur; + xmlNodePtr elem; + PyObject *pyobj_elem; + + if (!PyArg_ParseTuple(args, (char *)"OO:xmlAddSibling", &pyobj_cur, &pyobj_elem)) + return(NULL); + cur = (xmlNodePtr) PyxmlNode_Get(pyobj_cur); + elem = (xmlNodePtr) PyxmlNode_Get(pyobj_elem); + + c_retval = xmlAddSibling(cur, elem); + py_retval = libxml_xmlNodePtrWrap((xmlNodePtr) c_retval); + return(py_retval); +} + +PyObject * libxml_xmlNodeAddContentLen(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { xmlNodePtr cur; PyObject *pyobj_cur; @@ -2623,15 +2642,15 @@ libxml_xmlSchemaValidateDoc(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { int c_retval; xmlSchemaValidCtxtPtr ctxt; PyObject *pyobj_ctxt; - xmlDocPtr instance; - PyObject *pyobj_instance; + xmlDocPtr doc; + PyObject *pyobj_doc; - if (!PyArg_ParseTuple(args, (char *)"OO:xmlSchemaValidateDoc", &pyobj_ctxt, &pyobj_instance)) + if (!PyArg_ParseTuple(args, (char *)"OO:xmlSchemaValidateDoc", &pyobj_ctxt, &pyobj_doc)) return(NULL); ctxt = (xmlSchemaValidCtxtPtr) PySchemaValidCtxt_Get(pyobj_ctxt); - instance = (xmlDocPtr) PyxmlNode_Get(pyobj_instance); + doc = (xmlDocPtr) PyxmlNode_Get(pyobj_doc); - c_retval = xmlSchemaValidateDoc(ctxt, instance); + c_retval = xmlSchemaValidateDoc(ctxt, doc); py_retval = libxml_intWrap((int) c_retval); return(py_retval); } @@ -2951,6 +2970,27 @@ libxml_xmlUCSIsBuhid(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { return(py_retval); } +#ifdef LIBXML_SCHEMAS_ENABLED +PyObject * +libxml_xmlSchemaValidateOneElement(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + int c_retval; + xmlSchemaValidCtxtPtr ctxt; + PyObject *pyobj_ctxt; + xmlNodePtr elem; + PyObject *pyobj_elem; + + if (!PyArg_ParseTuple(args, (char *)"OO:xmlSchemaValidateOneElement", &pyobj_ctxt, &pyobj_elem)) + return(NULL); + ctxt = (xmlSchemaValidCtxtPtr) PySchemaValidCtxt_Get(pyobj_ctxt); + elem = (xmlNodePtr) PyxmlNode_Get(pyobj_elem); + + c_retval = xmlSchemaValidateOneElement(ctxt, elem); + py_retval = libxml_intWrap((int) c_retval); + return(py_retval); +} + +#endif /* LIBXML_SCHEMAS_ENABLED */ PyObject * libxml_xmlReadDoc(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; @@ -3733,6 +3773,25 @@ libxml_xmlValidateNmtokenValue(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) } PyObject * +libxml_xmlAddChildList(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + xmlNodePtr c_retval; + xmlNodePtr parent; + PyObject *pyobj_parent; + xmlNodePtr cur; + PyObject *pyobj_cur; + + if (!PyArg_ParseTuple(args, (char *)"OO:xmlAddChildList", &pyobj_parent, &pyobj_cur)) + return(NULL); + parent = (xmlNodePtr) PyxmlNode_Get(pyobj_parent); + cur = (xmlNodePtr) PyxmlNode_Get(pyobj_cur); + + c_retval = xmlAddChildList(parent, cur); + py_retval = libxml_xmlNodePtrWrap((xmlNodePtr) c_retval); + return(py_retval); +} + +PyObject * libxml_xmlGetNodePath(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; xmlChar * c_retval; @@ -5309,20 +5368,6 @@ libxml_xmlValidateNCName(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { } PyObject * -libxml_xmlUCSIsMusicalSymbols(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { - PyObject *py_retval; - int c_retval; - int code; - - if (!PyArg_ParseTuple(args, (char *)"i:xmlUCSIsMusicalSymbols", &code)) - return(NULL); - - c_retval = xmlUCSIsMusicalSymbols(code); - py_retval = libxml_intWrap((int) c_retval); - return(py_retval); -} - -PyObject * libxml_xmlUCSIsCJKCompatibility(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; int c_retval; @@ -7896,25 +7941,6 @@ libxml_xmlNamespaceParseNCName(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) } PyObject * -libxml_xmlAddChildList(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { - PyObject *py_retval; - xmlNodePtr c_retval; - xmlNodePtr parent; - PyObject *pyobj_parent; - xmlNodePtr cur; - PyObject *pyobj_cur; - - if (!PyArg_ParseTuple(args, (char *)"OO:xmlAddChildList", &pyobj_parent, &pyobj_cur)) - return(NULL); - parent = (xmlNodePtr) PyxmlNode_Get(pyobj_parent); - cur = (xmlNodePtr) PyxmlNode_Get(pyobj_cur); - - c_retval = xmlAddChildList(parent, cur); - py_retval = libxml_xmlNodePtrWrap((xmlNodePtr) c_retval); - return(py_retval); -} - -PyObject * libxml_xmlGetDtdEntity(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; xmlEntityPtr c_retval; @@ -9543,6 +9569,20 @@ libxml_htmlDocDump(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { #endif /* LIBXML_HTML_ENABLED */ PyObject * +libxml_xmlUCSIsMusicalSymbols(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + int c_retval; + int code; + + if (!PyArg_ParseTuple(args, (char *)"i:xmlUCSIsMusicalSymbols", &code)) + return(NULL); + + c_retval = xmlUCSIsMusicalSymbols(code); + py_retval = libxml_intWrap((int) c_retval); + return(py_retval); +} + +PyObject * libxml_xmlTextReaderRelaxNGValidate(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { PyObject *py_retval; int c_retval; @@ -10440,6 +10480,24 @@ libxml_xmlHandleEntity(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { return(Py_None); } +#ifdef LIBXML_SCHEMAS_ENABLED +PyObject * +libxml_xmlSchemaValidCtxtGetOptions(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { + PyObject *py_retval; + int c_retval; + xmlSchemaValidCtxtPtr ctxt; + PyObject *pyobj_ctxt; + + if (!PyArg_ParseTuple(args, (char *)"O:xmlSchemaValidCtxtGetOptions", &pyobj_ctxt)) + return(NULL); + ctxt = (xmlSchemaValidCtxtPtr) PySchemaValidCtxt_Get(pyobj_ctxt); + + c_retval = xmlSchemaValidCtxtGetOptions(ctxt); + py_retval = libxml_intWrap((int) c_retval); + return(py_retval); +} + +#endif /* LIBXML_SCHEMAS_ENABLED */ #ifdef LIBXML_XPATH_ENABLED PyObject * libxml_xmlXPathFloorFunction(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) { diff --git a/python/setup.py b/python/setup.py index f094b56..6d9d1c6 100755 --- a/python/setup.py +++ b/python/setup.py @@ -226,7 +226,7 @@ else: setup (name = "libxml2-python", # On *nix, the version number is created from setup.py.in # On windows, it is set by configure.js - version = "2.6.13", + version = "2.6.14", description = descr, author = "Daniel Veillard", author_email = "veillard@redhat.com", diff --git a/python/tests/Makefile.in b/python/tests/Makefile.in index dfef491..3084356 100644 --- a/python/tests/Makefile.in +++ b/python/tests/Makefile.in @@ -191,6 +191,7 @@ WITH_XINCLUDE = @WITH_XINCLUDE@ WITH_XPATH = @WITH_XPATH@ WITH_XPTR = @WITH_XPTR@ XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ XML_CFLAGS = @XML_CFLAGS@ XML_INCLUDEDIR = @XML_INCLUDEDIR@ XML_LIBDIR = @XML_LIBDIR@ @@ -198,6 +199,7 @@ XML_LIBS = @XML_LIBS@ XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ XPATH_OBJ = @XPATH_OBJ@ XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ Z_CFLAGS = @Z_CFLAGS@ Z_LIBS = @Z_LIBS@ ac_ct_AR = @ac_ct_AR@ @@ -3964,14 +3964,17 @@ xmlRelaxNGGetElements(xmlRelaxNGParserCtxtPtr ctxt, return (NULL); } } else if (max <= len) { + xmlRelaxNGDefinePtr *temp; + max *= 2; - ret = - xmlRealloc(ret, + temp = xmlRealloc(ret, (max + 1) * sizeof(xmlRelaxNGDefinePtr)); - if (ret == NULL) { + if (temp == NULL) { xmlRngPErrMemory(ctxt, "getting element list\n"); + xmlFree(ret); return (NULL); } + ret = temp; } ret[len++] = cur; ret[len] = NULL; diff --git a/result/VC/AttributeNmtokens b/result/VC/AttributeNmtokens new file mode 100644 index 0000000..4c19285 --- /dev/null +++ b/result/VC/AttributeNmtokens @@ -0,0 +1,3 @@ +./test/VC/AttributeNmtokens:6: element test: validity error : Syntax of value for attribute attr1 of test is not valid +<test attr1=" a	b "/> + ^ diff --git a/result/schemas/bug152470_1_1 b/result/schemas/bug152470_1_1 new file mode 100644 index 0000000..b158caa --- /dev/null +++ b/result/schemas/bug152470_1_1 @@ -0,0 +1 @@ +./test/schemas/bug152470_1.xml validates diff --git a/result/schemas/bug152470_1_1.err b/result/schemas/bug152470_1_1.err new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/result/schemas/bug152470_1_1.err diff --git a/result/schemas/deter0_0_0.err b/result/schemas/deter0_0_0.err index f908a51..73d2532 100644 --- a/result/schemas/deter0_0_0.err +++ b/result/schemas/deter0_0_0.err @@ -1 +1 @@ -./test/schemas/deter0_0.xsd:5: element element: Schemas parser error : Element decl. 'book': The content model is not determinist. +./test/schemas/deter0_0.xsd:6: element complexType: Schemas parser error : CT local: The content model is not determinist. diff --git a/result/schemas/ns0_0_2.err b/result/schemas/ns0_0_2.err index 0ba0285..475ba48 100644 --- a/result/schemas/ns0_0_2.err +++ b/result/schemas/ns0_0_2.err @@ -1,2 +1 @@ -./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': Global declaration is absent. -./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': Global declaration is absent. +./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': No matching global declaration available. diff --git a/result/schemas/ns0_1_2.err b/result/schemas/ns0_1_2.err index 0ba0285..475ba48 100644 --- a/result/schemas/ns0_1_2.err +++ b/result/schemas/ns0_1_2.err @@ -1,2 +1 @@ -./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': Global declaration is absent. -./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': Global declaration is absent. +./test/schemas/ns0_2.xml:1: element foo: Schemas validity error : Element 'foo': No matching global declaration available. diff --git a/test/VC/AttributeNmtokens b/test/VC/AttributeNmtokens new file mode 100644 index 0000000..8710de4 --- /dev/null +++ b/test/VC/AttributeNmtokens @@ -0,0 +1,6 @@ +<!DOCTYPE test [ + <!ELEMENT test EMPTY> + <!ATTLIST test attr1 NMTOKENS #IMPLIED> +]> +<!-- Should be invalid due to http://www.w3.org/XML/xml-V10-2e-errata#E20 --> +<test attr1=" a	b "/> diff --git a/test/VCM/AttributeNmtokens.xml b/test/VCM/AttributeNmtokens.xml new file mode 100644 index 0000000..575f811 --- /dev/null +++ b/test/VCM/AttributeNmtokens.xml @@ -0,0 +1,14 @@ +<!DOCTYPE doc [ + <!ELEMENT doc (norm+)> + <!ELEMENT norm EMPTY> + <!ATTLIST norm attr NMTOKENS #IMPLIED> +]> +<doc> + <norm attr = ' foo bar +'/> + <norm attr = 'foobar + +'/> + <norm attr = 'foo bar '/> + <norm attr = ' foo  bar'/> +</doc> diff --git a/test/schemas/bug152470_1.xml b/test/schemas/bug152470_1.xml new file mode 100755 index 0000000..adca237 --- /dev/null +++ b/test/schemas/bug152470_1.xml @@ -0,0 +1,9 @@ +<?xml version="1.0"?> +<roap:deviceHello + xmlns:roap="urn:oma:bac:dldrm:roap-1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <deviceID> + <keyIdentifier +><hash>vXENc+Um/9/NvmYKiHDLaErK0gk=</hash></keyIdentifier> + </deviceID> +</roap:deviceHello>
\ No newline at end of file diff --git a/test/schemas/bug152470_1.xsd b/test/schemas/bug152470_1.xsd new file mode 100755 index 0000000..877a655 --- /dev/null +++ b/test/schemas/bug152470_1.xsd @@ -0,0 +1,49 @@ +<?xml version="1.0"?> +<schema + targetNamespace="urn:oma:bac:dldrm:roap-1.0" + xmlns="http://www.w3.org/2001/XMLSchema" + xmlns:roap="urn:oma:bac:dldrm:roap-1.0" + xmlns:ds="http://www.w3.org/2000/09/xmldsig#" + xmlns:xenc="http://www.w3.org/2001/04/xmlenc#" + elementFormDefault="unqualified" + attributeFormDefault="unqualified"> +<!-- Basic Types --> +<complexType name="Request" abstract="true"/> +<!-- Basic types to identify entities --> + +<complexType name="Identifier"> + <choice> + <element name="keyIdentifier" type="roap:KeyIdentifier"/> + </choice> +</complexType> + +<complexType name="KeyIdentifier" /> <!-- removed: abstract="true" --> + +<complexType name="X509SPKIHash"> + <complexContent> + <extension base="roap:KeyIdentifier"> + <sequence> + <element name="hash" type="base64Binary"/> + </sequence> + <attribute name="algorithm" type="anyURI" + default="http://www.w3.org/2000/09/xmldsig#sha1"/> + </extension> + </complexContent> +</complexType> + +<element name="deviceHello" type="roap:DeviceHello"/> + +<complexType name="DeviceHello"> + <complexContent> + <extension base="roap:Request"> + <sequence> + <element name="deviceID" type="roap:Identifier" + maxOccurs="unbounded"/> + </sequence> + </extension> + </complexContent> +</complexType> + +</schema> + + @@ -369,6 +369,8 @@ xmlRMutexUnlock(xmlRMutexPtr tok ATTRIBUTE_UNUSED) static void xmlFreeGlobalState(void *state) { + /* free any memory allocated in the thread's xmlLastError */ + xmlResetLastError(); free(state); } @@ -3707,6 +3707,8 @@ xmlCopyPropList(xmlNodePtr target, xmlAttrPtr cur) { while (cur != NULL) { q = xmlCopyProp(target, cur); + if (q == NULL) + return(NULL); if (p == NULL) { ret = p = q; } else { @@ -4207,11 +4209,11 @@ xmlGetNodePath(xmlNodePtr node) name = (const char *) cur->name; if (cur->ns) { if (cur->ns->prefix != NULL) - snprintf(nametemp, sizeof(nametemp) - 1, - "%s:%s", cur->ns->prefix, cur->name); + snprintf(nametemp, sizeof(nametemp) - 1, "%s:%s", + (char *)cur->ns->prefix, (char *)cur->name); else - snprintf(nametemp, sizeof(nametemp) - 1, - "%s", cur->name); + snprintf(nametemp, sizeof(nametemp) - 1, "%s", + (char *)cur->name); nametemp[sizeof(nametemp) - 1] = 0; name = nametemp; } @@ -4296,7 +4298,7 @@ xmlGetNodePath(xmlNodePtr node) } else if (cur->type == XML_PI_NODE) { sep = "/"; snprintf(nametemp, sizeof(nametemp) - 1, - "processing-instruction('%s')", cur->name); + "processing-instruction('%s')", (char *)cur->name); nametemp[sizeof(nametemp) - 1] = 0; name = nametemp; @@ -4362,7 +4364,7 @@ xmlGetNodePath(xmlNodePtr node) else snprintf((char *) buf, buf_len, "%s%s[%d]%s", sep, name, occur, (char *) buffer); - snprintf((char *) buffer, buf_len, "%s", buf); + snprintf((char *) buffer, buf_len, "%s", (char *)buf); cur = next; } while (cur != NULL); xmlFree(buf); @@ -5637,7 +5639,7 @@ xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) { if (ns->prefix == NULL) snprintf((char *) prefix, sizeof(prefix), "default"); else - snprintf((char *) prefix, sizeof(prefix), "%.20s", ns->prefix); + snprintf((char *) prefix, sizeof(prefix), "%.20s", (char *)ns->prefix); def = xmlSearchNs(doc, tree, prefix); while (def != NULL) { @@ -5645,7 +5647,8 @@ xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) { if (ns->prefix == NULL) snprintf((char *) prefix, sizeof(prefix), "default%d", counter++); else - snprintf((char *) prefix, sizeof(prefix), "%.20s%d", ns->prefix, counter++); + snprintf((char *) prefix, sizeof(prefix), "%.20s%d", + (char *)ns->prefix, counter++); def = xmlSearchNs(doc, tree, prefix); } @@ -828,7 +828,7 @@ xmlURIUnescapeString(const char *str, int len, char *target) { in = str; out = ret; while(len > 0) { - if ((*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) { + if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) { in++; if ((*in >= '0') && (*in <= '9')) *out = (*in - '0'); @@ -2325,11 +2325,11 @@ xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) { xmlBufferWriteQuotedString(buf, nota->PublicID); if (nota->SystemID != NULL) { xmlBufferWriteChar(buf, " "); - xmlBufferWriteCHAR(buf, nota->SystemID); + xmlBufferWriteQuotedString(buf, nota->SystemID); } } else { xmlBufferWriteChar(buf, " SYSTEM "); - xmlBufferWriteCHAR(buf, nota->SystemID); + xmlBufferWriteQuotedString(buf, nota->SystemID); } xmlBufferWriteChar(buf, " >\n"); } @@ -3306,8 +3306,9 @@ xmlValidateNamesValue(const xmlChar *value) { cur += len; } - while (IS_BLANK(val)) { - while (IS_BLANK(val)) { + /* Should not test IS_BLANK(val) here -- see erratum E20*/ + while (val == 0x20) { + while (val == 0x20) { val = xmlStringCurrentChar(NULL, cur, &len); cur += len; } @@ -3418,8 +3419,9 @@ xmlValidateNmtokensValue(const xmlChar *value) { cur += len; } - while (IS_BLANK(val)) { - while (IS_BLANK(val)) { + /* Should not test IS_BLANK(val) here -- see erratum E20*/ + while (val == 0x20) { + while (val == 0x20) { val = xmlStringCurrentChar(NULL, cur, &len); cur += len; } diff --git a/vms/build_libxml.com b/vms/build_libxml.com index 323c36f..ed5107b 100755 --- a/vms/build_libxml.com +++ b/vms/build_libxml.com @@ -42,14 +42,14 @@ $!- list of sources to be built into the LIBXML library. Compare this list $! to the definition of "libxml2_la_SOURCES" in the file MAKEFILE.IN. $! Currently this definition includes the list WITH_TRIO_SOURCES_TRUE $! -$ sources = "SAX.c entities.c encoding.c error.c parserInternals.c parser.c" -$ sources = sources + " tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c valid.c" -$ sources = sources + " xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c " -$ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c " -$ sources = sources + " DOCBparser.c catalog.c globals.c threads.c c14n.c " -$ sources = sources + " xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c " +$ sources = "SAX.c entities.c encoding.c error.c parserInternals.c" +$ sources = sources + " parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c" +$ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c" +$ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c" +$ sources = sources + " catalog.c globals.c threads.c c14n.c xmlstring.c" +$ sources = sources + " xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c" $ sources = sources + " triostr.c trio.c xmlreader.c relaxng.c dict.c SAX2.c" -$ sources = sources + " legacy.c xmldwalk.c chvalid.c" +$ sources = sources + " xmlwriter.c legacy.c chvalid.c pattern.c xmlsave.c" $! $!- list of main modules to compile and link. Compare this list to the $! definition of bin_PROGRAMS in MAKEFILE.IN @@ -2217,7 +2217,9 @@ __xmlOutputBufferCreateFilename(const char *URI, int i = 0; void *context = NULL; char *unescaped = NULL; +#ifdef HAVE_ZLIB_H int is_file_uri = 1; +#endif if (xmlOutputCallbackInitialized == 0) xmlRegisterDefaultOutputCallbacks(); @@ -2228,7 +2230,9 @@ __xmlOutputBufferCreateFilename(const char *URI, if (puri != NULL) { if ((puri->scheme != NULL) && (!xmlStrEqual(BAD_CAST puri->scheme, BAD_CAST "file"))) +#ifdef HAVE_ZLIB_H is_file_uri = 0; +#endif /* * try to limit the damages of the URI unescaping code. */ @@ -1236,8 +1236,20 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) { */ if (copy) { tmp = doc; + if (timing) { + startTimer(); + } doc = xmlCopyDoc(doc, 1); + if (timing) { + endTimer("Copying"); + } + if (timing) { + startTimer(); + } xmlFreeDoc(tmp); + if (timing) { + endTimer("Freeing original"); + } } #endif /* LIBXML_TREE_ENABLED */ diff --git a/xmlmemory.c b/xmlmemory.c index 88d191b..821e3b9 100644 --- a/xmlmemory.c +++ b/xmlmemory.c @@ -644,11 +644,11 @@ xmlMemDisplay(FILE *fp) case MALLOC_ATOMIC_TYPE:fprintf(fp,"atomicmalloc() in ");break; case REALLOC_ATOMIC_TYPE:fprintf(fp,"atomicrealloc() in ");break; default: - fprintf(fp,"Unknow memory block, corruped maybe"); + fprintf(fp,"Unknown memory block, may be corrupted"); xmlMutexUnlock(xmlMemMutex); return; } - if (p->mh_file != NULL) fprintf(fp,"%s(%d)", p->mh_file, p->mh_line); + if (p->mh_file != NULL) fprintf(fp,"%s(%u)", p->mh_file, p->mh_line); if (p->mh_tag != MEMTAG) fprintf(fp," INVALID"); nb++; @@ -750,7 +750,7 @@ xmlMemShow(FILE *fp, int nr ATTRIBUTE_UNUSED) default:fprintf(fp," ??? in ");break; } if (p->mh_file != NULL) - fprintf(fp,"%s(%d)", p->mh_file, p->mh_line); + fprintf(fp,"%s(%u)", p->mh_file, p->mh_line); if (p->mh_tag != MEMTAG) fprintf(fp," INVALID"); xmlMemContentShow(fp, p); diff --git a/xmlregexp.c b/xmlregexp.c index 0435d67..b34cf9c 100644 --- a/xmlregexp.c +++ b/xmlregexp.c @@ -4008,11 +4008,8 @@ xmlFAParseBranch(xmlRegParserCtxtPtr ctxt) { */ static void xmlFAParseRegExp(xmlRegParserCtxtPtr ctxt, int top) { - xmlRegStatePtr start, end, oldend, oldstart; + xmlRegStatePtr start, end; - oldend = ctxt->end; - - oldstart = ctxt->state; /* if not top start should have been generated by an epsilon trans */ start = ctxt->state; ctxt->end = NULL; @@ -4409,6 +4406,94 @@ xmlAutomataNewTransition2(xmlAutomataPtr am, xmlAutomataStatePtr from, } /** + * xmlAutomataNewCountTrans2: + * @am: an automata + * @from: the starting point of the transition + * @to: the target point of the transition or NULL + * @token: the input string associated to that transition + * @token2: the second input string associated to that transition + * @min: the minimum successive occurences of token + * @max: the maximum successive occurences of token + * @data: data associated to the transition + * + * If @to is NULL, this creates first a new target state in the automata + * and then adds a transition from the @from state to the target state + * activated by a succession of input of value @token and @token2 and + * whose number is between @min and @max + * + * Returns the target state or NULL in case of error + */ +xmlAutomataStatePtr +xmlAutomataNewCountTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, + xmlAutomataStatePtr to, const xmlChar *token, + const xmlChar *token2, + int min, int max, void *data) { + xmlRegAtomPtr atom; + int counter; + + if ((am == NULL) || (from == NULL) || (token == NULL)) + return(NULL); + if (min < 0) + return(NULL); + if ((max < min) || (max < 1)) + return(NULL); + atom = xmlRegNewAtom(am, XML_REGEXP_STRING); + if (atom == NULL) + return(NULL); + if ((token2 == NULL) || (*token2 == 0)) { + atom->valuep = xmlStrdup(token); + } else { + int lenn, lenp; + xmlChar *str; + + lenn = strlen((char *) token2); + lenp = strlen((char *) token); + + str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); + if (str == NULL) { + xmlRegFreeAtom(atom); + return(NULL); + } + memcpy(&str[0], token, lenp); + str[lenp] = '|'; + memcpy(&str[lenp + 1], token2, lenn); + str[lenn + lenp + 1] = 0; + + atom->valuep = str; + } + atom->data = data; + if (min == 0) + atom->min = 1; + else + atom->min = min; + atom->max = max; + + /* + * associate a counter to the transition. + */ + counter = xmlRegGetCounter(am); + am->counters[counter].min = min; + am->counters[counter].max = max; + + /* xmlFAGenerateTransitions(am, from, to, atom); */ + if (to == NULL) { + to = xmlRegNewState(am); + xmlRegStatePush(am, to); + } + xmlRegStateAddTrans(am, from, atom, to, counter, -1); + xmlRegAtomPush(am, atom); + am->state = to; + + if (to == NULL) + to = am->state; + if (to == NULL) + return(NULL); + if (min == 0) + xmlFAGenerateEpsilonTransition(am, from, to); + return(to); +} + +/** * xmlAutomataNewCountTrans: * @am: an automata * @from: the starting point of the transition @@ -4475,6 +4560,90 @@ xmlAutomataNewCountTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, } /** + * xmlAutomataNewOnceTrans2: + * @am: an automata + * @from: the starting point of the transition + * @to: the target point of the transition or NULL + * @token: the input string associated to that transition + * @token2: the second input string associated to that transition + * @min: the minimum successive occurences of token + * @max: the maximum successive occurences of token + * @data: data associated to the transition + * + * If @to is NULL, this creates first a new target state in the automata + * and then adds a transition from the @from state to the target state + * activated by a succession of input of value @token and @token2 and whose + * number is between @min and @max, moreover that transition can only be + * crossed once. + * + * Returns the target state or NULL in case of error + */ +xmlAutomataStatePtr +xmlAutomataNewOnceTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, + xmlAutomataStatePtr to, const xmlChar *token, + const xmlChar *token2, + int min, int max, void *data) { + xmlRegAtomPtr atom; + int counter; + + if ((am == NULL) || (from == NULL) || (token == NULL)) + return(NULL); + if (min < 1) + return(NULL); + if ((max < min) || (max < 1)) + return(NULL); + atom = xmlRegNewAtom(am, XML_REGEXP_STRING); + if (atom == NULL) + return(NULL); + if ((token2 == NULL) || (*token2 == 0)) { + atom->valuep = xmlStrdup(token); + } else { + int lenn, lenp; + xmlChar *str; + + lenn = strlen((char *) token2); + lenp = strlen((char *) token); + + str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); + if (str == NULL) { + xmlRegFreeAtom(atom); + return(NULL); + } + memcpy(&str[0], token, lenp); + str[lenp] = '|'; + memcpy(&str[lenp + 1], token2, lenn); + str[lenn + lenp + 1] = 0; + + atom->valuep = str; + } + atom->data = data; + atom->quant = XML_REGEXP_QUANT_ONCEONLY; + if (min == 0) + atom->min = 1; + else + atom->min = min; + atom->max = max; + /* + * associate a counter to the transition. + */ + counter = xmlRegGetCounter(am); + am->counters[counter].min = 1; + am->counters[counter].max = 1; + + /* xmlFAGenerateTransitions(am, from, to, atom); */ + if (to == NULL) { + to = xmlRegNewState(am); + xmlRegStatePush(am, to); + } + xmlRegStateAddTrans(am, from, atom, to, counter, -1); + xmlRegAtomPush(am, atom); + am->state = to; + return(to); +} + + + +/** * xmlAutomataNewOnceTrans: * @am: an automata * @from: the starting point of the transition @@ -517,14 +517,18 @@ xmlDtdDumpOutput(xmlSaveCtxtPtr ctxt, xmlDtdPtr dtd) { xmlBufferWriteQuotedString(buf->buffer, dtd->SystemID); } if ((dtd->entities == NULL) && (dtd->elements == NULL) && - (dtd->attributes == NULL) && (dtd->notations == NULL) && - (dtd->pentities == NULL)) { + (dtd->attributes == NULL) && (dtd->notations == NULL) && + (dtd->pentities == NULL)) { xmlOutputBufferWrite(buf, 1, ">"); return; } xmlOutputBufferWrite(buf, 3, " [\n"); - /* Dump the notations first they are not in the DTD children list */ - if (dtd->notations != NULL) { + /* + * Dump the notations first they are not in the DTD children list + * Do this only on a standalone DTD or on the internal subset though. + */ + if ((dtd->notations != NULL) && ((dtd->doc == NULL) || + (dtd->doc->intSubset == dtd))) { xmlDumpNotationTable(buf->buffer, (xmlNotationTablePtr) dtd->notations); } format = ctxt->format; diff --git a/xmlschemas.c b/xmlschemas.c index a7e8d5e..cc9620e 100644 --- a/xmlschemas.c +++ b/xmlschemas.c @@ -91,6 +91,19 @@ static const xmlChar *xmlSchemaElemDesCT = (const xmlChar *) str = NULL; \ } +#define IS_ANYTYPE(item) \ + ((item->type == XML_SCHEMA_TYPE_BASIC) && \ + (item->builtInType == XML_SCHEMAS_ANYTYPE)) + +#define IS_COMPLEX_TYPE(item) \ + ((item->type == XML_SCHEMA_TYPE_COMPLEX) || \ + (item->builtInType == XML_SCHEMAS_ANYTYPE)) + +#define IS_SIMPLE_TYPE(item) \ + ((item->type == XML_SCHEMA_TYPE_SIMPLE) || \ + ((item->type == XML_SCHEMA_TYPE_BASIC) && \ + (item->builtInType != XML_SCHEMAS_ANYTYPE))) + #define XML_SCHEMAS_VAL_WTSP_PRESERVE 0 #define XML_SCHEMAS_VAL_WTSP_REPLACE 1 #define XML_SCHEMAS_VAL_WTSP_COLLAPSE 2 @@ -99,6 +112,51 @@ static const xmlChar *xmlSchemaElemDesCT = (const xmlChar *) #define SCHEMAS_PARSE_OPTIONS XML_PARSE_NOENT + +/* +* XML_SCHEMA_VAL_XSI_ASSEMBLE_TNS_COMPOSE +* allow to assemble schemata with +* the same target namespace from +* different sources; otherwise, the first +* encountered schema with a specific target +* namespace will be used only * + +* +* XML_SCHEMA_VAL_LOCATE_BY_NSNAME = 1<<2 +* locate schemata to be imported +* using the namespace name; otherwise +* the location URI will be used */ + +/* +* xmlSchemaParserOption: +* +* This is the set of XML Schema parser options. +* +typedef enum { + XML_SCHEMA_PAR_LOCATE_BY_NSNAME = 1<<0 + * locate schemata to be imported + * using the namespace name; otherwise + * the location URI will be used * +} xmlSchemaParserOption; +*/ + +/* +XMLPUBFUN int XMLCALL + xmlSchemaParserCtxtSetOptions(xmlSchemaParserCtxtPtr ctxt, + int options); +XMLPUBFUN int XMLCALL + xmlSchemaParserCtxtGetOptions(xmlSchemaParserCtxtPtr ctxt); + +*/ + +typedef struct _xmlSchemaAssemble xmlSchemaAssemble; +typedef xmlSchemaAssemble *xmlSchemaAssemblePtr; +struct _xmlSchemaAssemble { + void **items; /* used for dynamic addition of schemata */ + int nbItems; /* used for dynamic addition of schemata */ + int sizeItems; /* used for dynamic addition of schemata */ +}; + struct _xmlSchemaParserCtxt { void *userData; /* user specific data block */ xmlSchemaValidityErrorFunc error; /* the callback in case of errors */ @@ -133,6 +191,9 @@ struct _xmlSchemaParserCtxt { int includes; /* the inclusion level, 0 for root or imports */ xmlSchemaTypePtr ctxtType; /* The current context simple/complex type */ xmlSchemaTypePtr parentItem; /* The current parent schema item */ + xmlSchemaAssemblePtr assemble; + int options; + xmlSchemaValidCtxtPtr vctxt; }; @@ -142,6 +203,8 @@ struct _xmlSchemaParserCtxt { #define XML_SCHEMAS_ATTR_MISSING 4 #define XML_SCHEMAS_ATTR_INVALID_VALUE 5 #define XML_SCHEMAS_ATTR_TYPE_NOT_RESOLVED 6 +#define XML_SCHEMAS_ATTR_INVALID_FIXED_VALUE 7 +#define XML_SCHEMAS_ATTR_DEFAULT 8 typedef struct _xmlSchemaAttrState xmlSchemaAttrState; typedef xmlSchemaAttrState *xmlSchemaAttrStatePtr; @@ -150,6 +213,7 @@ struct _xmlSchemaAttrState { xmlAttrPtr attr; int state; xmlSchemaAttributePtr decl; + const xmlChar *value; }; /** @@ -183,11 +247,13 @@ struct _xmlSchemaValidCtxt { xmlSchemaValPtr value; xmlSchemaAttrStatePtr attrTop; - /* xmlSchemaAttrStatePtr attrBase; */ - /* int attrMax; */ xmlSchemaAttrStatePtr attr; - xmlNodePtr scope; + /* xmlNodePtr scope; not used */ int valueWS; + int options; + xmlNodePtr validationRoot; + xmlSchemaParserCtxtPtr pctxt; + int xsiAssemble; }; /* @@ -197,8 +263,9 @@ typedef struct _xmlSchemaImport xmlSchemaImport; typedef xmlSchemaImport *xmlSchemaImportPtr; struct _xmlSchemaImport { const xmlChar *schemaLocation; - xmlSchemaPtr schema; + xmlSchemaPtr schema; /* not used any more */ xmlDocPtr doc; + int isMain; }; /* @@ -213,6 +280,36 @@ struct _xmlSchemaInclude { xmlDocPtr doc; }; +typedef struct _xmlSchemaParticle xmlSchemaParticle; +typedef xmlSchemaParticle *xmlSchemaParticlePtr; +struct _xmlSchemaParticle { + xmlSchemaTypeType type; + xmlSchemaParticlePtr next; /* the next particle if in a list */ + int minOccurs; + int maxOccurs; + xmlSchemaTypePtr term; +}; + + +typedef struct _xmlSchemaModelGroup xmlSchemaModelGroup; +typedef xmlSchemaModelGroup *xmlSchemaModelGroupPtr; +struct _xmlSchemaModelGroup { + xmlSchemaTypeType type; + int compositor; /* one of all, choice or sequence */ + xmlSchemaParticlePtr particles; /* list of particles */ + xmlSchemaAnnotPtr annot; +}; + +typedef struct _xmlSchemaModelGroupDef xmlSchemaModelGroupDef; +typedef xmlSchemaModelGroupDef *xmlSchemaModelGroupDefPtr; +struct _xmlSchemaModelGroupDef { + xmlSchemaTypeType type; + const xmlChar *name; + const xmlChar *targetNamespace; + xmlSchemaModelGroupPtr modelGroup; + xmlSchemaAnnotPtr annot; +}; + /************************************************************************ * * * Some predeclarations * @@ -229,10 +326,20 @@ static const char * xmlSchemaFacetTypeToString(xmlSchemaTypeType type); static int xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type, const xmlChar *value, int fireErrors, int applyFacets, - int normalize); + int normalize, + int checkNodes); +static int +xmlSchemaValidateElementByDeclaration(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaElementPtr elemDecl); +static int +xmlSchemaValidateElementByWildcard(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type); +static int +xmlSchemaHasElemOrCharContent(xmlNodePtr node); static int xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node); @@ -498,7 +605,7 @@ xmlSchemaVErr(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node, int error, } /** - * xmlSchemaGetOnymousTypeName: + * xmlSchemaGetAttrName: * @attr: the attribute declaration/use * * Returns the name of the attribute; if the attribute @@ -514,7 +621,7 @@ xmlSchemaGetAttrName(xmlSchemaAttributePtr attr) } /** - * xmlSchemaGetOnymousTargetNsURI: + * xmlSchemaGetAttrTargetNsURI: * @type: the type (element or attribute) * * Returns the target namespace URI of the type; if the type is a reference, @@ -957,10 +1064,13 @@ xmlSchemaVComplexTypeErr(xmlSchemaValidCtxtPtr ctxt, { xmlChar *str = NULL, *msg = NULL; - xmlSchemaFormatItemForReport(&msg, NULL, NULL, node, 0); - msg = xmlStrcat(msg, BAD_CAST " ["); - msg = xmlStrcat(msg, xmlSchemaFormatItemForReport(&str, NULL, type, NULL, 0)); - msg = xmlStrcat(msg, BAD_CAST "]: %s.\n"); + xmlSchemaFormatItemForReport(&msg, NULL, NULL, node, 0); + if (type != NULL) { + msg = xmlStrcat(msg, BAD_CAST " ["); + msg = xmlStrcat(msg, xmlSchemaFormatItemForReport(&str, NULL, type, NULL, 0)); + msg = xmlStrcat(msg, BAD_CAST "]"); + } + msg = xmlStrcat(msg, BAD_CAST ": %s.\n"); xmlSchemaVErr(ctxt, node, error, (const char *) msg, (const xmlChar *) message, NULL); FREE_AND_NULL(str) @@ -1672,7 +1782,7 @@ xmlSchemaVMissingAttrErr(xmlSchemaValidCtxtPtr ctxt, ************************************************************************/ /** - * xmlSchemaNewSchema: + * xmlSchemaNewSchemaForParserCtxt: * @ctxt: a schema validation context * * Allocate a new Schema structure. @@ -1697,6 +1807,29 @@ xmlSchemaNewSchema(xmlSchemaParserCtxtPtr ctxt) } /** + * xmlSchemaNewSchema: + * @ctxt: a schema validation context + * + * Allocate a new Schema structure. + * + * Returns the newly allocated structure or NULL in case or error + */ +static xmlSchemaAssemblePtr +xmlSchemaNewAssemble(void) +{ + xmlSchemaAssemblePtr ret; + + ret = (xmlSchemaAssemblePtr) xmlMalloc(sizeof(xmlSchemaAssemble)); + if (ret == NULL) { + /* xmlSchemaPErrMemory(ctxt, "allocating assemble info", NULL); */ + return (NULL); + } + memset(ret, 0, sizeof(xmlSchemaAssemble)); + ret->items = NULL; + return (ret); +} + +/** * xmlSchemaNewFacet: * * Allocate a new Facet structure. @@ -1833,6 +1966,8 @@ xmlSchemaFreeAttribute(xmlSchemaAttributePtr attr) return; if (attr->annot != NULL) xmlSchemaFreeAnnot(attr->annot); + if (attr->defVal != NULL) + xmlSchemaFreeValue(attr->defVal); xmlFree(attr); } @@ -1945,6 +2080,8 @@ xmlSchemaFreeElement(xmlSchemaElementPtr elem) xmlSchemaFreeAnnot(elem->annot); if (elem->contModel != NULL) xmlRegFreeRegexp(elem->contModel); + if (elem->defVal != NULL) + xmlSchemaFreeValue(elem->defVal); xmlFree(elem); } @@ -1994,11 +2131,14 @@ xmlSchemaFreeType(xmlSchemaTypePtr type) if (type->type != XML_SCHEMA_TYPE_BASIC) { if (type->attributeUses != NULL) xmlSchemaFreeAttributeUseList(type->attributeUses); - /* TODO: There must be a way more simple than this. */ - if ((type->attributeWildcard != NULL) && + if ((type->attributeWildcard != NULL) && ((type->type != XML_SCHEMA_TYPE_COMPLEX) || - ((type->type == XML_SCHEMA_TYPE_COMPLEX) && - (type->flags & XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD)))) { + (type->flags & XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD))) { + /* + * NOTE: The only case where an attribute wildcard + * is not owned, is if a complex type inherits it + * from a base type. + */ xmlSchemaFreeWildcard(type->attributeWildcard); } } @@ -2013,7 +2153,9 @@ xmlSchemaFreeType(xmlSchemaTypePtr type) xmlFree(link); link = next; } while (link != NULL); - } + } + if (type->contModel != NULL) + xmlRegFreeRegexp(type->contModel); xmlFree(type); } @@ -2075,8 +2217,7 @@ xmlSchemaFree(xmlSchemaPtr schema) xmlSchemaFreeAnnot(schema->annot); if (schema->doc != NULL && !schema->preserve) xmlFreeDoc(schema->doc); - xmlDictFree(schema->dict); - + xmlDictFree(schema->dict); xmlFree(schema); } @@ -2417,85 +2558,6 @@ xmlSchemaGetProp(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, return(ret); } -#if 0 -/** - * xmlSchemaGetNamespace: - * @ctxt: the parser context - * @schema: the schemas containing the declaration - * @node: the node - * @qname: the QName to analyze - * - * Find the namespace name for the given declaration. - * - * Returns the local name for that declaration, as well as the namespace name - * NOTE: This function is no longer used (Buchcik, May '04) - */ -static const xmlChar * -xmlSchemaGetNamespace(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, - xmlNodePtr node, const xmlChar *qname, - const xmlChar **namespace) { - int len; - const xmlChar *name, *prefix, *def = NULL; - xmlNsPtr ns; - - *namespace = NULL; - - /* TODO: The following seems to be not correct here: - * 1. The name of a declaration is a NCName, not a QName. - * 2. The attribute "targetNamespace" is allowed for the - * <schema> Element Information Item only. - * 3. One cannot evaluate the target namespace, by the type - * of declaration, since it is dependant on the xxxFormDefault - * of <schema> and the form attribute of an <element> or <attribute>. - */ - - if (xmlStrEqual(node->name, BAD_CAST "element") || - xmlStrEqual(node->name, BAD_CAST "attribute") || - xmlStrEqual(node->name, BAD_CAST "simpleType") || - xmlStrEqual(node->name, BAD_CAST "complexType")) { - def = xmlSchemaGetProp(ctxt, node, "targetNamespace"); - } - - - qname = xmlDictLookup(ctxt->dict, qname, -1); /* intern the string */ - name = xmlSplitQName3(qname, &len); - if (name == NULL) { - if (def == NULL) { - if (xmlStrEqual(node->name, BAD_CAST "element")) { - if (schema->flags & XML_SCHEMAS_QUALIF_ELEM) - *namespace = schema->targetNamespace; - } else if (xmlStrEqual(node->name, BAD_CAST "attribute")) { - if (schema->flags & XML_SCHEMAS_QUALIF_ATTR) - *namespace = schema->targetNamespace; - } else if ((xmlStrEqual(node->name, BAD_CAST "simpleType")) || - (xmlStrEqual(node->name, BAD_CAST "complexType"))) { - *namespace = schema->targetNamespace; - } - } else { - *namespace = def; - } - return(qname); - } - - name = xmlDictLookup(ctxt->dict, name, -1); - prefix = xmlDictLookup(ctxt->dict, qname, len); - if (def != NULL) { - xmlSchemaPErr(ctxt, node, XML_SCHEMAP_DEF_AND_PREFIX, - "%s: presence of both prefix %s and targetNamespace\n", - node->name, prefix); - } - ns = xmlSearchNs(node->doc, node, prefix); - if (ns == NULL) { - xmlSchemaPErr(ctxt, node, XML_SCHEMAP_PREFIX_UNDEFINED, - "%s: The QName prefix %s is undefined\n", - node->name, prefix); - return(name); - } - *namespace = xmlDictLookup(ctxt->dict, ns->href, -1); - return(name); -} -#endif - /************************************************************************ * * * Parsing functions * @@ -2811,8 +2873,57 @@ xmlSchemaIsBlank(xmlChar * str) } /** + * xmlSchemaAddAssembledItem: + * @ctxt: a schema parser context + * @schema: the schema being built + * @item: the item + * + * Add a item to the schema's list of current items. + * This is used if the schema was already constructed and + * new schemata need to be added to it. + * *WARNING* this interface is highly subject to change. + * + * Returns 0 if suceeds and -1 if an internal error occurs. + */ +static int +xmlSchemaAddAssembledItem(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaTypePtr item) +{ + static int growSize = 100; + xmlSchemaAssemblePtr ass; + + ass = ctxt->assemble; + if (ass->sizeItems < 0) { + /* If disabled. */ + return (0); + } + if (ass->sizeItems <= 0) { + ass->items = (void **) xmlMalloc(growSize * sizeof(xmlSchemaTypePtr)); + if (ass->items == NULL) { + xmlSchemaPErrMemory(ctxt, + "allocating new item buffer", NULL); + return (-1); + } + ass->sizeItems = growSize; + } else if (ass->sizeItems <= ass->nbItems) { + ass->sizeItems *= 2; + ass->items = (void **) xmlRealloc(ass->items, + ass->sizeItems * sizeof(xmlSchemaTypePtr)); + if (ass->items == NULL) { + xmlSchemaPErrMemory(ctxt, + "growing item buffer", NULL); + ass->sizeItems = 0; + return (-1); + } + } + /* ass->items[ass->nbItems++] = (void *) item; */ + ((xmlSchemaTypePtr *) ass->items)[ass->nbItems++] = (void *) item; + return (0); +} + +/** * xmlSchemaAddNotation: - * @ctxt: a schema validation context + * @ctxt: a schema parser context * @schema: the schema being built * @name: the item name * @@ -2863,7 +2974,7 @@ xmlSchemaAddNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, /** * xmlSchemaAddAttribute: - * @ctxt: a schema validation context + * @ctxt: a schema parser context * @schema: the schema being built * @name: the item name * @namespace: the namespace @@ -2913,12 +3024,14 @@ xmlSchemaAddAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlFree(ret); return (NULL); } + if (ctxt->assemble != NULL) + xmlSchemaAddAssembledItem(ctxt, (xmlSchemaTypePtr) ret); return (ret); } /** * xmlSchemaAddAttributeGroup: - * @ctxt: a schema validation context + * @ctxt: a schema parser context * @schema: the schema being built * @name: the item name * @@ -2961,12 +3074,14 @@ xmlSchemaAddAttributeGroup(xmlSchemaParserCtxtPtr ctxt, xmlFree(ret); return (NULL); } + if (ctxt->assemble != NULL) + xmlSchemaAddAssembledItem(ctxt, (xmlSchemaTypePtr) ret); return (ret); } /** * xmlSchemaAddElement: - * @ctxt: a schema validation context + * @ctxt: a schema parser context * @schema: the schema being built * @name: the type name * @namespace: the type namespace @@ -3036,6 +3151,8 @@ xmlSchemaAddElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } } + if (ctxt->assemble != NULL) + xmlSchemaAddAssembledItem(ctxt, (xmlSchemaTypePtr) ret); return (ret); } @@ -3111,7 +3228,8 @@ xmlSchemaAddType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, ret->maxOccurs = 1; ret->attributeUses = NULL; ret->attributeWildcard = NULL; - + if (ctxt->assemble != NULL) + xmlSchemaAddAssembledItem(ctxt,ret); return (ret); } @@ -3160,7 +3278,8 @@ xmlSchemaAddGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } ret->minOccurs = 1; ret->maxOccurs = 1; - + if (ctxt->assemble != NULL) + xmlSchemaAddAssembledItem(ctxt, (xmlSchemaTypePtr) ret); return (ret); } @@ -3243,9 +3362,14 @@ xmlGetQNameProp(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, xmlNsPtr ns; const xmlChar *ret, *prefix; int len; + xmlAttrPtr attr; *namespace = NULL; - val = xmlSchemaGetProp(ctxt, node, name); + attr = xmlSchemaGetPropNode(node, name); + if (attr == NULL) + return (NULL); + val = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) attr); + if (val == NULL) return (NULL); @@ -3265,10 +3389,11 @@ xmlGetQNameProp(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, ns = xmlSearchNs(node->doc, node, prefix); if (ns == NULL) { - xmlSchemaPErr(ctxt, node, XML_SCHEMAP_PREFIX_UNDEFINED, - "Attribute '%s': The prefix '%s' of the QName " - "'%s' has no corresponding namespace declaration is scope.\n", - (const xmlChar *) name, prefix); + xmlSchemaPSimpleTypeErr(ctxt, XML_SCHEMAP_PREFIX_UNDEFINED, + NULL, NULL, (xmlNodePtr) attr, + xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), NULL, val, + "The QName value '%s' has no corresponding namespace " + "declaration in scope", val, NULL); } else { *namespace = xmlDictLookup(ctxt->dict, ns->href, -1); } @@ -3351,9 +3476,9 @@ xmlSchemaPValAttrNodeQNameValue(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPSimpleTypeErr(ctxt, XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, ownerDes, ownerItem, (xmlNodePtr) attr, - xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), "QName", value, - "The prefix '%s' of the value '%s' is not declared.\n", - pref, value); + xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), "QName", value, + "The QName value '%s' has no corresponding namespace " + "declaration in scope", value, NULL); return (ctxt->err); } else { *uri = xmlDictLookup(ctxt->dict, ns->href, -1); @@ -3552,6 +3677,53 @@ xmlGetMinOccurs(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node, } /** + * xmlSchemaPGetBoolNodeValue: + * @ctxt: a schema validation context + * @ownerDes: owner designation + * @ownerItem: the owner as a schema item + * @node: the node holding the value + * + * Converts a boolean string value into 1 or 0. + * + * Returns 0 or 1. + */ +static int +xmlSchemaPGetBoolNodeValue(xmlSchemaParserCtxtPtr ctxt, + xmlChar **ownerDes, + xmlSchemaTypePtr ownerItem, + xmlNodePtr node) +{ + xmlChar *value = NULL; + int res = 0; + + value = xmlNodeGetContent(node); + /* + * 3.2.2.1 Lexical representation + * An instance of a datatype that is defined as ·boolean· + * can have the following legal literals {true, false, 1, 0}. + */ + if (xmlStrEqual(BAD_CAST value, BAD_CAST "true")) + res = 1; + else if (xmlStrEqual(BAD_CAST value, BAD_CAST "false")) + res = 0; + else if (xmlStrEqual(BAD_CAST value, BAD_CAST "1")) + res = 1; + else if (xmlStrEqual(BAD_CAST value, BAD_CAST "0")) + res = 0; + else { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_INVALID_BOOLEAN, + ownerDes, ownerItem, node, + xmlSchemaGetBuiltInType(XML_SCHEMAS_BOOLEAN), + "(1 | 0 | true | false)", BAD_CAST value, + NULL, NULL, NULL); + } + if (value != NULL) + xmlFree(value); + return (res); +} + +/** * xmlGetBooleanProp: * @ctxt: a schema validation context * @node: a subtree containing XML Schema informations @@ -3642,7 +3814,7 @@ xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node); /** - * xmlSchemaPValAttrNode: + * xmlSchemaPValAttrNodeValue: * * @ctxt: a schema parser context * @ownerDes: the designation of the parent element @@ -3894,19 +4066,7 @@ xmlSchemaParseAttrDecls(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } } child = child->next; - } - if (IS_SCHEMA(child, "anyAttribute")) { - xmlSchemaWildcardPtr wildcard; - - wildcard = xmlSchemaParseAnyAttribute(ctxt, schema, child); - if (wildcard != NULL) { - if (type->type == XML_SCHEMA_TYPE_ATTRIBUTEGROUP) - ((xmlSchemaAttributeGroupPtr) type)->attributeWildcard = wildcard; - else - type->attributeWildcard = wildcard; - } - child = child->next; - } + } return (child); } @@ -4109,8 +4269,7 @@ xmlSchemaParseFacet(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, if (xmlStrEqual(fixed, BAD_CAST "true")) facet->fixed = 1; } - } - + } child = node->children; if (IS_SCHEMA(child, "annotation")) { @@ -4407,7 +4566,7 @@ xmlSchemaParseNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, * parse a XML schema AnyAttrribute declaration * *WARNING* this interface is highly subject to change * - * Returns an attribute def structure or NULL + * Returns a wildcard or NULL. */ static xmlSchemaWildcardPtr xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt, @@ -4415,6 +4574,7 @@ xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt, { xmlSchemaWildcardPtr ret; xmlNodePtr child = NULL; + xmlAttrPtr attr; if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); @@ -4424,22 +4584,47 @@ xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt, return (NULL); } ret->type = XML_SCHEMA_TYPE_ANY_ATTRIBUTE; - ret->id = xmlSchemaGetProp(ctxt, node, "id"); + /* + * Check for illegal attributes. + */ + attr = node->properties; + while (attr != NULL) { + if (attr->ns == NULL) { + if ((!xmlStrEqual(attr->name, BAD_CAST "id")) && + (!xmlStrEqual(attr->name, BAD_CAST "namespace")) && + (!xmlStrEqual(attr->name, BAD_CAST "processContents"))) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + attr = attr->next; + } + /* ret->id = xmlSchemaGetProp(ctxt, node, "id"); */ + /* + * Parse the namespace list. + */ if (xmlSchemaParseWildcardNs(ctxt, schema, ret, node) != 0) { xmlSchemaFreeWildcard(ret); return (NULL); - } + } + /* + * And now for the children... + */ child = node->children; if (IS_SCHEMA(child, "annotation")) { ret->annot = xmlSchemaParseAnnotation(ctxt, schema, child); child = child->next; } if (child != NULL) { - /* TODO: Change the error code. */ xmlSchemaPContentErr(ctxt, - XML_SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD, - NULL, NULL, node, child, - NULL, "(annotation?)"); + XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, + NULL, NULL, node, child, + NULL, "(annotation?)"); } return (ret); @@ -4501,7 +4686,7 @@ xmlSchemaParseAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, isRef = 1; if (isRef) { - char buf[100]; + char buf[50]; const xmlChar *refNs = NULL, *ref = NULL, *refPrefix = NULL; /* @@ -4512,7 +4697,7 @@ xmlSchemaParseAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, &refPrefix, &ref) != 0) { return (NULL); } - snprintf(buf, 99, "#aRef %d", ctxt->counter++ + 1); + snprintf(buf, 49, "#aRef %d", ctxt->counter++ + 1); name = (const xmlChar *) buf; ret = xmlSchemaAddAttribute(ctxt, schema, name, NULL, node); if (ret == NULL) { @@ -4790,55 +4975,119 @@ xmlSchemaParseAttributeGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int topLevel) { - const xmlChar *name, *refNs = NULL, *ref = NULL; + const xmlChar *name; xmlSchemaAttributeGroupPtr ret; xmlNodePtr child = NULL; - const xmlChar *oldcontainer; - char buf[100]; + const xmlChar *oldcontainer; + xmlAttrPtr attr, nameAttr; if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); - oldcontainer = ctxt->container; - name = xmlSchemaGetProp(ctxt, node, "name"); - if (name == NULL) { - ref = xmlGetQNameProp(ctxt, node, "ref", &refNs); - if (ref == NULL) { - xmlSchemaPErr2(ctxt, node, child, - XML_SCHEMAP_ATTRGRP_NONAME_NOREF, - "Attribute group or particle: One of the attributes 'name' " - "or 'ref' must be present.\n", NULL, - NULL); - return (NULL); - } - snprintf(buf, 99, "anonattrgroup %d", ctxt->counter++ + 1); - name = (const xmlChar *) buf; - if (name == NULL) { - xmlSchemaPErrMemory(ctxt, "creating attribute group", node); + + nameAttr = xmlSchemaGetPropNode(node, "name"); + attr = xmlSchemaGetPropNode(node, "ref"); + if ((topLevel) || (attr == NULL)) { + /* + * Parse as an attribute group definition. + * Note that those are allowed at top level only. + */ + if (nameAttr == NULL) { + xmlSchemaPMissingAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_MISSING, + NULL, NULL, node, "name", NULL); + return (NULL); + } + name = xmlSchemaGetNodeContent(ctxt, (xmlNodePtr) nameAttr); + /* + * The name is crucial, exit if invalid. + */ + if (xmlSchemaPValAttrNode(ctxt, + NULL, NULL, nameAttr, + xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) { + return (NULL); + } + ret = xmlSchemaAddAttributeGroup(ctxt, schema, name, node); + if (ret == NULL) + return (NULL); + ret->type = XML_SCHEMA_TYPE_ATTRIBUTEGROUP; + ret->flags |= XML_SCHEMAS_ATTRGROUP_GLOBAL; + ret->node = node; + } else { + char buf[50]; + const xmlChar *refNs = NULL, *ref = NULL, *refPrefix; + + /* + * Parse as an attribute group definition reference. + */ + if (attr == NULL) { + xmlSchemaPMissingAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_MISSING, + NULL, NULL, node, "ref", NULL); + } + xmlSchemaPValAttrNodeQName(ctxt, schema, + NULL, NULL, attr, &refNs, &refPrefix, &ref); + + snprintf(buf, 49, "#aGrRef %d", ctxt->counter++ + 1); + name = (const xmlChar *) buf; + if (name == NULL) { + xmlSchemaPErrMemory(ctxt, "creating internal name for an " + "attribute group definition reference", node); return (NULL); } + ret = xmlSchemaAddAttributeGroup(ctxt, schema, name, node); + if (ret == NULL) + return (NULL); + ret->type = XML_SCHEMA_TYPE_ATTRIBUTEGROUP; + ret->ref = ref; + ret->refNs = refNs; + /* TODO: Is @refPrefix currently used? */ + ret->refPrefix = refPrefix; + ret->node = node; } - ret = xmlSchemaAddAttributeGroup(ctxt, schema, name, node); - if (ret == NULL) { - return (NULL); - } - ret->ref = ref; - ret->refNs = refNs; - ret->type = XML_SCHEMA_TYPE_ATTRIBUTEGROUP; - if (topLevel) - ret->flags |= XML_SCHEMAS_ATTRGROUP_GLOBAL; - ret->node = node; - child = node->children; + /* + * Check for illegal attributes. + */ + attr = node->properties; + while (attr != NULL) { + if (attr->ns == NULL) { + if ((((topLevel == 0) && (!xmlStrEqual(attr->name, BAD_CAST "ref"))) || + (topLevel && (!xmlStrEqual(attr->name, BAD_CAST "name")))) && + (!xmlStrEqual(attr->name, BAD_CAST "id"))) + { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + attr = attr->next; + } + /* TODO: Validate "id" ? */ + /* + * And now for the children... + */ + oldcontainer = ctxt->container; ctxt->container = name; + child = node->children; if (IS_SCHEMA(child, "annotation")) { ret->annot = xmlSchemaParseAnnotation(ctxt, schema, child); child = child->next; } - child = xmlSchemaParseAttrDecls(ctxt, schema, child, (xmlSchemaTypePtr) ret); + if (topLevel) { + child = xmlSchemaParseAttrDecls(ctxt, schema, child, (xmlSchemaTypePtr) ret); + if (IS_SCHEMA(child, "anyAttribute")) { + ret->attributeWildcard = xmlSchemaParseAnyAttribute(ctxt, schema, child); + child = child->next; + } + } if (child != NULL) { - xmlSchemaPErr2(ctxt, node, child, - XML_SCHEMAP_UNKNOWN_ATTRGRP_CHILD, - "Attribute group '%s' has unexpected content.\n", name, - NULL); + xmlSchemaPContentErr(ctxt, + XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, + NULL, NULL, node, child, NULL, + "(annotation?)"); } ctxt->container = oldcontainer; return (ret); @@ -5033,7 +5282,7 @@ xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, * robust. */ if (isRef) { - char buf[100]; + char buf[50]; const xmlChar *refNs = NULL, *ref = NULL, *refPrefix; /* @@ -5043,7 +5292,7 @@ xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, (xmlChar **) &xmlSchemaElemDesAttrRef, NULL, attr, &refNs, &refPrefix, &ref); - snprintf(buf, 99, "#eRef %d", ctxt->counter++ + 1); + snprintf(buf, 49, "#eRef %d", ctxt->counter++ + 1); name = (const xmlChar *) buf; ret = xmlSchemaAddElement(ctxt, schema, name, NULL, node, 0); if (ret == NULL) { @@ -5074,11 +5323,15 @@ xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, attr = node->properties; while (attr != NULL) { if (attr->ns == NULL) { - if ((!xmlStrEqual(attr->name, BAD_CAST "ref")) && - (!xmlStrEqual(attr->name, BAD_CAST "id")) && - (!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) && - (!xmlStrEqual(attr->name, BAD_CAST "minOccurs")) && - (!xmlStrEqual(attr->name, BAD_CAST "name"))) { + if (xmlStrEqual(attr->name, BAD_CAST "ref") || + xmlStrEqual(attr->name, BAD_CAST "name") || + xmlStrEqual(attr->name, BAD_CAST "id") || + xmlStrEqual(attr->name, BAD_CAST "maxOccurs") || + xmlStrEqual(attr->name, BAD_CAST "minOccurs")) + { + attr = attr->next; + continue; + } else { xmlSchemaPCustomAttrErr(ctxt, XML_SCHEMAP_SRC_ELEMENT_2_2, &repName, (xmlSchemaTypePtr) ret, attr, @@ -5144,27 +5397,31 @@ xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, (!xmlStrEqual(attr->name, BAD_CAST "default")) && (!xmlStrEqual(attr->name, BAD_CAST "fixed")) && (!xmlStrEqual(attr->name, BAD_CAST "block")) && - (!xmlStrEqual(attr->name, BAD_CAST "nillable"))) { - if (topLevel == 0) { - if (xmlStrEqual(attr->name, BAD_CAST "substitutionGroup")) { - /* - * 3.3.6 : 3 If there is a non-·absent· {substitution - * group affiliation}, then {scope} must be global. - * TODO: This one is redundant, since the S4S does - * prohibit this attribute on local declarations already; - * so why an explicit error code? Weird spec. - * TODO: Move this to the proper constraint layer. - */ - xmlSchemaPIllegalAttrErr(ctxt, - XML_SCHEMAP_E_PROPS_CORRECT_3, - &repName, (xmlSchemaTypePtr) ret, attr); - } else if ((!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) && + (!xmlStrEqual(attr->name, BAD_CAST "nillable"))) + { + if (topLevel == 0) { + if ((!xmlStrEqual(attr->name, BAD_CAST "maxOccurs")) && (!xmlStrEqual(attr->name, BAD_CAST "minOccurs")) && - (!xmlStrEqual(attr->name, BAD_CAST "form"))) { - - xmlSchemaPIllegalAttrErr(ctxt, - XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - &repName, (xmlSchemaTypePtr) ret, attr); + (!xmlStrEqual(attr->name, BAD_CAST "form"))) + { + if (xmlStrEqual(attr->name, BAD_CAST "substitutionGroup")) { + /* + * 3.3.6 : 3 If there is a non-·absent· {substitution + * group affiliation}, then {scope} must be global. + * TODO: This one is redundant, since the S4S does + * prohibit this attribute on local declarations already; + * so why an explicit error code? Weird spec. + * TODO: Move this to the proper constraint layer. + * TODO: Or better wait for spec 1.1 to come. + */ + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_E_PROPS_CORRECT_3, + &repName, (xmlSchemaTypePtr) ret, attr); + } else { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + &repName, (xmlSchemaTypePtr) ret, attr); + } } } else if ((!xmlStrEqual(attr->name, BAD_CAST "final")) && (!xmlStrEqual(attr->name, BAD_CAST "abstract")) && @@ -5540,38 +5797,37 @@ static xmlSchemaTypePtr xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int topLevel) { - xmlSchemaTypePtr type, subtype, ctxtType; + xmlSchemaTypePtr type, subtype, oldCtxtType, oldParentItem; xmlNodePtr child = NULL; const xmlChar *attrValue = NULL; - xmlChar *repName = NULL; + xmlChar *des = NULL; xmlAttrPtr attr; if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); - - attr = xmlSchemaGetPropNode(node, "name"); - + if (topLevel) { + attr = xmlSchemaGetPropNode(node, "name"); if (attr == NULL) { xmlSchemaPMissingAttrErr(ctxt, XML_SCHEMAP_S4S_ATTR_MISSING, - (xmlChar **) &xmlSchemaElemDesAttrDecl, NULL, node, + (xmlChar **) &xmlSchemaElemDesST, NULL, node, "name", NULL); return (NULL); } else if (xmlSchemaPValAttrNode(ctxt, - (xmlChar **) &xmlSchemaElemDesAttrDecl, NULL, attr, + (xmlChar **) &xmlSchemaElemDesST, NULL, attr, xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &attrValue) != 0) { return (NULL); } } if (topLevel == 0) { - char buf[100]; + char buf[40]; /* * Parse as local simple type definition. */ - snprintf(buf, 99, "#st %d", ctxt->counter++ + 1); + snprintf(buf, 39, "#ST %d", ctxt->counter++ + 1); type = xmlSchemaAddType(ctxt, schema, (const xmlChar *)buf, NULL, node); if (type == NULL) return (NULL); @@ -5586,18 +5842,20 @@ xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, if (!xmlStrEqual(attr->name, BAD_CAST "id")) { xmlSchemaPIllegalAttrErr(ctxt, XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - &repName, type, attr); + &des, type, attr); } } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { xmlSchemaPIllegalAttrErr(ctxt, XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - &repName, type, attr); + &des, type, attr); } attr = attr->next; } } else { /* * Parse as global simple type definition. + * + * Note that attrValue is the value of the attribute "name" here. */ type = xmlSchemaAddType(ctxt, schema, attrValue, schema->targetNamespace, node); if (type == NULL) @@ -5613,15 +5871,15 @@ xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, if (attr->ns == NULL) { if ((!xmlStrEqual(attr->name, BAD_CAST "id")) && (!xmlStrEqual(attr->name, BAD_CAST "name")) && - (!xmlStrEqual(attr->name, BAD_CAST "final"))){ + (!xmlStrEqual(attr->name, BAD_CAST "final"))) { xmlSchemaPIllegalAttrErr(ctxt, XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - &repName, type, attr); + &des, type, attr); } } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { xmlSchemaPIllegalAttrErr(ctxt, XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - &repName, type, attr); + &des, type, attr); } attr = attr->next; } @@ -5640,7 +5898,7 @@ xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaPSimpleTypeErr(ctxt, XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, - &repName, type, (xmlNodePtr) attr, + &des, type, (xmlNodePtr) attr, NULL, "(#all | List of (list | union | restriction)", attrValue, NULL, NULL, NULL); } @@ -5651,7 +5909,8 @@ xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, /* * And now for the children... */ - ctxtType = ctxt->ctxtType; + oldCtxtType = ctxt->ctxtType; + oldParentItem = ctxt->parentItem; ctxt->ctxtType = type; ctxt->parentItem = type; child = node->children; @@ -5676,12 +5935,12 @@ xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, type->subtypes = subtype; if ((child != NULL) || (subtype == NULL)) { xmlSchemaPContentErr(ctxt, XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, - &repName, type, node, child, NULL, + &des, type, node, child, NULL, "(annotation?, (restriction | list | union))"); } - ctxt->ctxtType = ctxtType; - if (repName != NULL) - xmlFree(repName); + ctxt->parentItem = oldParentItem; + ctxt->ctxtType = oldCtxtType; + FREE_AND_NULL(des) return (type); } @@ -5708,11 +5967,19 @@ xmlSchemaParseGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, const xmlChar *name; const xmlChar *ref = NULL, *refNs = NULL; char buf[100]; + int minOccurs, maxOccurs; if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); - - + /* + * TODO: Validate the element even if no item is created + * (i.e. min/maxOccurs == 0). + */ + minOccurs = xmlGetMinOccurs(ctxt, node, 0, -1, 1, "nonNegativeInteger"); + maxOccurs = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1, "(nonNegativeInteger | unbounded)"); + if ((minOccurs == 0) && (maxOccurs == 0)) { + return (NULL); + } name = xmlSchemaGetProp(ctxt, node, "name"); if (name == NULL) { ref = xmlGetQNameProp(ctxt, node, "ref", &refNs); @@ -5738,10 +6005,9 @@ xmlSchemaParseGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, type->id = xmlSchemaGetProp(ctxt, node, "id"); type->ref = ref; type->refNs = refNs; - - type->minOccurs = xmlGetMinOccurs(ctxt, node, 0, -1, 1, "nonNegativeInteger"); - type->maxOccurs = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1, "(nonNegativeInteger | unbounded)"); - xmlSchemaPCheckParticleCorrect_2(ctxt, type, + type->minOccurs = minOccurs; + type->maxOccurs = maxOccurs; + xmlSchemaPCheckParticleCorrect_2(ctxt, type, node, type->minOccurs, type->maxOccurs); child = node->children; @@ -6162,134 +6428,57 @@ xmlSchemaParseSchemaTopLevel(xmlSchemaParserCtxtPtr ctxt, ctxt->ctxtType = NULL; } - -/** - * xmlSchemaParseImport: - * @ctxt: a schema validation context - * @schema: the schema being built - * @node: a subtree containing XML Schema informations - * - * parse a XML schema Import definition - * *WARNING* this interface is highly subject to change - * - * Returns 0 in case of success, a positive error code if - * not valid and -1 in case of an internal error. - */ -static int -xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, - xmlNodePtr node) +static xmlSchemaImportPtr +xmlSchemaAddImport(xmlSchemaParserCtxtPtr ctxt, + xmlHashTablePtr *imports, + const xmlChar *nsName) { - xmlNodePtr child = NULL; - xmlSchemaImportPtr import = NULL; - const xmlChar *namespace = NULL, *ns; - const xmlChar *schemaLocation = NULL; - const xmlChar *targetNamespace, *oldTNS, *url; - xmlAttrPtr attr; - xmlDocPtr doc; - xmlNodePtr root; - xmlChar *base = NULL; - xmlChar *URI = NULL; - int flags; - xmlParserCtxtPtr parserCtxt; - + xmlSchemaImportPtr ret; - if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) - return (-1); - - /* - * Check for illegal attributes. - */ - attr = node->properties; - while (attr != NULL) { - if (attr->ns == NULL) { - if ((!xmlStrEqual(attr->name, BAD_CAST "id")) && - (!xmlStrEqual(attr->name, BAD_CAST "namespace")) && - (!xmlStrEqual(attr->name, BAD_CAST "schemaLocation"))) { - xmlSchemaPIllegalAttrErr(ctxt, - XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - NULL, NULL, attr); - } - } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { - xmlSchemaPIllegalAttrErr(ctxt, - XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, - NULL, NULL, attr); + if (*imports == NULL) { + *imports = xmlHashCreate(10); + if (*imports == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_FAILED_BUILD_IMPORT, + NULL, NULL, (xmlNodePtr) ctxt->doc, + "Internal error: failed to build the import table", + NULL); + return (NULL); } - attr = attr->next; - } - /* - * Extract and validate attributes. - */ - if (xmlSchemaPValAttr(ctxt, NULL, NULL, node, - "namespace", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), - &namespace) != 0) { - xmlSchemaPSimpleTypeErr(ctxt, - XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI, - NULL, NULL, node, - xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), - NULL, namespace, NULL, NULL, NULL); - return (XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI); } + ret = (xmlSchemaImport*) xmlMalloc(sizeof(xmlSchemaImport)); + if (ret == NULL) { + xmlSchemaPErrMemory(NULL, "allocating import struct", NULL); + return (NULL); + } + memset(ret, 0, sizeof(xmlSchemaImport)); + if (nsName == NULL) + nsName = XML_SCHEMAS_NO_NAMESPACE; + xmlHashAddEntry(*imports, nsName, ret); + + return (ret); +} + +static int +xmlSchemaAcquireSchemaDoc(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaPtr schema, + xmlNodePtr node, + const xmlChar *nsName, + const xmlChar *location, + xmlDocPtr *doc, + const xmlChar **targetNamespace, + int absolute) +{ + xmlParserCtxtPtr parserCtxt; + xmlSchemaImportPtr import; + const xmlChar *ns; + xmlNodePtr root; - if (xmlSchemaPValAttr(ctxt, NULL, NULL, node, - "schemaLocation", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), - &schemaLocation) != 0) { - xmlSchemaPSimpleTypeErr(ctxt, - XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI, - NULL, NULL, node, - xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), - NULL, namespace, NULL, NULL, NULL); - return (XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI); - } - /* - * And now for the children... - */ - child = node->children; - if (IS_SCHEMA(child, "annotation")) { - /* - * the annotation here is simply discarded ... - */ - child = child->next; - } - if (child != NULL) { - xmlSchemaPContentErr(ctxt, - XML_SCHEMAP_UNKNOWN_IMPORT_CHILD, - NULL, NULL, node, child, NULL, - "(annotation?)"); - } /* - * Apply additional constraints. + * NOTE: This will be used for <import>, <xsi:schemaLocation> and + * <xsi:noNamespaceSchemaLocation>. */ - if (namespace != NULL) { - /* - * 1.1 If the namespace [attribute] is present, then its ·actual value· - * must not match the ·actual value· of the enclosing <schema>'s - * targetNamespace [attribute]. - */ - if (xmlStrEqual(schema->targetNamespace, namespace)) { - xmlSchemaPCustomErr(ctxt, - XML_SCHEMAP_SRC_IMPORT_1_1, - NULL, NULL, node, - "The value of the attribute 'namespace' must not match " - "the target namespace '%s' of the importing schema", - schema->targetNamespace); - return (XML_SCHEMAP_SRC_IMPORT_1_1); - } - } else { - /* - * 1.2 If the namespace [attribute] is not present, then the enclosing - * <schema> must have a targetNamespace [attribute]. - */ - if (schema->targetNamespace == NULL) { - xmlSchemaPCustomErr(ctxt, - XML_SCHEMAP_SRC_IMPORT_1_2, - NULL, NULL, node, - "The attribute 'namespace' must be existent if " - "the importing schema has no target namespace", - NULL); - return (XML_SCHEMAP_SRC_IMPORT_1_2); - } - } - + *doc = NULL; /* * Given that the schemaLocation [attribute] is only a hint, it is open * to applications to ignore all but the first <import> for a given @@ -6302,7 +6491,7 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, * valid or not. * We will follow XSV here. */ - if (schemaLocation == NULL) { + if (location == NULL) { /* * Schema Document Location Strategy: * @@ -6316,10 +6505,10 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, */ return (0); } - if (namespace == NULL) + if (nsName == NULL) ns = XML_SCHEMAS_NO_NAMESPACE; else - ns = namespace; + ns = nsName; import = xmlHashLookup(schema->schemasImports, ns); if (import != NULL) { @@ -6331,6 +6520,7 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, */ return (0); } + /* * Schema Document Location Strategy: * @@ -6343,19 +6533,21 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, * TODO: Hmm, I don't know if the reference stuff in 4. will work. * */ - - base = xmlNodeGetBase(node->doc, node); - if (base == NULL) { - URI = xmlBuildURI(schemaLocation, node->doc->URL); - } else { - URI = xmlBuildURI(schemaLocation, base); - xmlFree(base); - } - if (URI != NULL) { - schemaLocation = xmlDictLookup(ctxt->dict, URI, -1); - xmlFree(URI); + if ((absolute == 0) && (node != NULL)) { + xmlChar *base, *URI; + + base = xmlNodeGetBase(node->doc, node); + if (base == NULL) { + URI = xmlBuildURI(location, node->doc->URL); + } else { + URI = xmlBuildURI(location, base); + xmlFree(base); + } + if (URI != NULL) { + location = xmlDictLookup(ctxt->dict, URI, -1); + xmlFree(URI); + } } - parserCtxt = xmlNewParserCtxt(); if (parserCtxt == NULL) { xmlSchemaPErrMemory(NULL, "xmlSchemaParseImport: " @@ -6363,7 +6555,7 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, return(-1); } - doc = xmlCtxtReadFile(parserCtxt, (const char *) schemaLocation, + *doc = xmlCtxtReadFile(parserCtxt, (const char *) location, NULL, SCHEMAS_PARSE_OPTIONS); /* @@ -6379,7 +6571,7 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, * NOTE: 2.2 won't apply, since only XML documents will be processed * here. */ - if (doc == NULL) { + if (*doc == NULL) { xmlErrorPtr lerr; /* * It is *not* an error for the application schema reference @@ -6406,20 +6598,21 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, XML_SCHEMAP_SRC_IMPORT_2_1, NULL, NULL, node, "Failed to parse the resource '%s' for import", - schemaLocation); + location); xmlFreeParserCtxt(parserCtxt); return(XML_SCHEMAP_SRC_IMPORT_2_1); } xmlFreeParserCtxt(parserCtxt); - root = xmlDocGetRootElement(doc); + root = xmlDocGetRootElement(*doc); if (root == NULL) { xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_IMPORT_2_1, NULL, NULL, node, "The XML document '%s' to be imported has no document " - "element", schemaLocation); - xmlFreeDoc(doc); + "element", location); + xmlFreeDoc(*doc); + *doc = NULL; return (XML_SCHEMAP_SRC_IMPORT_2_1); } @@ -6430,91 +6623,223 @@ xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, XML_SCHEMAP_SRC_IMPORT_2_1, NULL, NULL, node, "The XML document '%s' to be imported is not a XML schema document", - schemaLocation); - xmlFreeDoc(doc); + location); + xmlFreeDoc(*doc); + *doc = NULL; return (XML_SCHEMAP_SRC_IMPORT_2_1); } - targetNamespace = xmlSchemaGetProp(ctxt, root, "targetNamespace"); + *targetNamespace = xmlSchemaGetProp(ctxt, root, "targetNamespace"); /* * Schema Representation Constraint: Import Constraints and Semantics */ - if (namespace == NULL) { - if (targetNamespace != NULL) { + if (nsName == NULL) { + if (*targetNamespace != NULL) { xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_IMPORT_3_2, NULL, NULL, node, - "No 'namespace' attribute was " - "specified, thus the XML schema to be imported " - "must have no target namespace", NULL); - xmlFreeDoc(doc); + "The XML schema to be imported is not expected " + "to have a target namespace; this differs from " + "its target namespace of '%s'", *targetNamespace); + xmlFreeDoc(*doc); + *doc = NULL; return (XML_SCHEMAP_SRC_IMPORT_3_2); } } else { - if (targetNamespace == NULL) { + if (*targetNamespace == NULL) { xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_SRC_IMPORT_3_1, NULL, NULL, node, - "The attribute 'namespace' requires the XML schema to be " - "imported to have a target namespace of '%s'", namespace); - xmlFreeDoc(doc); + "The XML schema to be imported is expected to have a target " + "namespace of '%s'", nsName); + xmlFreeDoc(*doc); + *doc = NULL; return (XML_SCHEMAP_SRC_IMPORT_3_1); - } else if (!xmlStrEqual(targetNamespace, namespace)) { + } else if (!xmlStrEqual(*targetNamespace, nsName)) { xmlSchemaPCustomErrExt(ctxt, XML_SCHEMAP_SRC_IMPORT_3_1, NULL, NULL, node, - "The value '%s' of the attribute 'namespace' is not " - "identical to the target namespace '%s' of the " - "XML schema to be imported", - namespace, targetNamespace, NULL); - xmlFreeDoc(doc); + "The XML schema to be imported is expected to have a " + "target namespace of '%s'; this differs from " + "its target namespace of '%s'", + nsName, *targetNamespace, NULL); + xmlFreeDoc(*doc); + *doc = NULL; return (XML_SCHEMAP_SRC_IMPORT_3_1); } } + + import = xmlSchemaAddImport(ctxt, &(schema->schemasImports), nsName); + if (import == NULL) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_FAILED_BUILD_IMPORT, + NULL, NULL, NULL, + "Internal error: xmlSchemaAcquireSchemaDoc, " + "failed to build import table", NULL); + xmlFreeDoc(*doc); + *doc = NULL; + return (-1); + } + import->schemaLocation = location; + import->doc = *doc; + return (0); +} + +/** + * xmlSchemaParseImport: + * @ctxt: a schema validation context + * @schema: the schema being built + * @node: a subtree containing XML Schema informations + * + * parse a XML schema Import definition + * *WARNING* this interface is highly subject to change + * + * Returns 0 in case of success, a positive error code if + * not valid and -1 in case of an internal error. + */ +static int +xmlSchemaParseImport(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, + xmlNodePtr node) +{ + xmlNodePtr child; + const xmlChar *namespace = NULL; + const xmlChar *schemaLocation = NULL; + const xmlChar *targetNamespace, *oldTNS, *url; + xmlAttrPtr attr; + xmlDocPtr doc; + xmlNodePtr root; + int flags, ret = 0; + + + if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) + return (-1); + /* - * Finally, import the schema. + * Check for illegal attributes. */ - if (schema->schemasImports == NULL) { - schema->schemasImports = xmlHashCreate(10); - if (schema->schemasImports == NULL) { - xmlSchemaPErr2(ctxt, node, child, - XML_SCHEMAP_FAILED_BUILD_IMPORT, - "Internal error: failed to build import table.\n", - NULL, NULL); - return (-1); + attr = node->properties; + while (attr != NULL) { + if (attr->ns == NULL) { + if ((!xmlStrEqual(attr->name, BAD_CAST "id")) && + (!xmlStrEqual(attr->name, BAD_CAST "namespace")) && + (!xmlStrEqual(attr->name, BAD_CAST "schemaLocation"))) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); } + attr = attr->next; + } + /* + * Extract and validate attributes. + */ + if (xmlSchemaPValAttr(ctxt, NULL, NULL, node, + "namespace", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), + &namespace) != 0) { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI, + NULL, NULL, node, + xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), + NULL, namespace, NULL, NULL, NULL); + return (XML_SCHEMAP_IMPORT_NAMESPACE_NOT_URI); } - import = (xmlSchemaImport*) xmlMalloc(sizeof(xmlSchemaImport)); - if (import == NULL) { - xmlSchemaPErrMemory(NULL, "allocating imported schema", NULL); - xmlFreeDoc(doc); - return (-1); + + if (xmlSchemaPValAttr(ctxt, NULL, NULL, node, + "schemaLocation", xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), + &schemaLocation) != 0) { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI, + NULL, NULL, node, + xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYURI), + NULL, namespace, NULL, NULL, NULL); + return (XML_SCHEMAP_IMPORT_SCHEMA_NOT_URI); } - memset(import, 0, sizeof(xmlSchemaImport)); - import->schemaLocation = schemaLocation; - import->doc = doc; - xmlHashAddEntry(schema->schemasImports, ns, import); /* - * Save and reset the context & schema. + * And now for the children... */ - url = ctxt->URL; - /* TODO: Check this. */ - ctxt->URL = schemaLocation; - flags = schema->flags; - oldTNS = schema->targetNamespace; - - xmlSchemaClearSchemaDefaults(schema); - xmlSchemaParseSchemaDefaults(ctxt, schema, root); - schema->targetNamespace = targetNamespace; - xmlSchemaParseSchemaTopLevel(ctxt, schema, root->children); - + child = node->children; + if (IS_SCHEMA(child, "annotation")) { + /* + * the annotation here is simply discarded ... + */ + child = child->next; + } + if (child != NULL) { + xmlSchemaPContentErr(ctxt, + XML_SCHEMAP_UNKNOWN_IMPORT_CHILD, + NULL, NULL, node, child, NULL, + "(annotation?)"); + } /* - * Restore the context & schema. + * Apply additional constraints. */ - schema->flags = flags; - schema->targetNamespace = oldTNS; - ctxt->URL = url; + if (namespace != NULL) { + /* + * 1.1 If the namespace [attribute] is present, then its ·actual value· + * must not match the ·actual value· of the enclosing <schema>'s + * targetNamespace [attribute]. + */ + if (xmlStrEqual(schema->targetNamespace, namespace)) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_IMPORT_1_1, + NULL, NULL, node, + "The value of the attribute 'namespace' must not match " + "the target namespace '%s' of the importing schema", + schema->targetNamespace); + return (XML_SCHEMAP_SRC_IMPORT_1_1); + } + } else { + /* + * 1.2 If the namespace [attribute] is not present, then the enclosing + * <schema> must have a targetNamespace [attribute]. + */ + if (schema->targetNamespace == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_IMPORT_1_2, + NULL, NULL, node, + "The attribute 'namespace' must be existent if " + "the importing schema has no target namespace", + NULL); + return (XML_SCHEMAP_SRC_IMPORT_1_2); + } + } + /* + * Locate and aquire the schema document. + */ + ret = xmlSchemaAcquireSchemaDoc(ctxt, schema, node, namespace, + schemaLocation, &doc, &targetNamespace, 0); + if (ret != 0) { + if (doc != NULL) + xmlFreeDoc(doc); + return (ret); + } else if (doc != NULL) { + /* + * Save and reset the context & schema. + */ + url = ctxt->URL; + /* TODO: Is using the doc->URL here correct? */ + ctxt->URL = doc->URL; + flags = schema->flags; + oldTNS = schema->targetNamespace; + /* + * Parse the schema. + */ + root = xmlDocGetRootElement(doc); + xmlSchemaClearSchemaDefaults(schema); + xmlSchemaParseSchemaDefaults(ctxt, schema, root); + schema->targetNamespace = targetNamespace; + xmlSchemaParseSchemaTopLevel(ctxt, schema, root->children); + /* + * Restore the context & schema. + */ + schema->flags = flags; + schema->targetNamespace = oldTNS; + ctxt->URL = url; + } - return (1); + return (0); } /** @@ -7139,8 +7464,13 @@ xmlSchemaParseRestriction(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } while (facet != NULL); } } - if (ctxt->ctxtType->type == XML_SCHEMA_TYPE_COMPLEX) - child = xmlSchemaParseAttrDecls(ctxt, schema, child, type); + if (ctxt->ctxtType->type == XML_SCHEMA_TYPE_COMPLEX) { + child = xmlSchemaParseAttrDecls(ctxt, schema, child, type); + if (IS_SCHEMA(child, "anyAttribute")) { + ctxt->ctxtType->attributeWildcard = xmlSchemaParseAnyAttribute(ctxt, schema, child); + child = child->next; + } + } if (child != NULL) { /* TODO: Think about the error code. */ if (ctxt->parentItem->type == XML_SCHEMA_TYPE_COMPLEX_CONTENT) { @@ -7234,7 +7564,15 @@ xmlSchemaParseExtension(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } if (subtype != NULL) type->subtypes = subtype; - child = xmlSchemaParseAttrDecls(ctxt, schema, child, type); + if ((ctxt->ctxtType != NULL) && + (ctxt->ctxtType->type == XML_SCHEMA_TYPE_COMPLEX)) { + child = xmlSchemaParseAttrDecls(ctxt, schema, child, type); + if (IS_SCHEMA(child, "anyAttribute")) { + ctxt->ctxtType->attributeWildcard = + xmlSchemaParseAnyAttribute(ctxt, schema, child); + child = child->next; + } + } if (child != NULL) { xmlSchemaPErr2(ctxt, node, child, XML_SCHEMAP_UNKNOWN_EXTENSION_CHILD, @@ -7260,7 +7598,7 @@ static xmlSchemaTypePtr xmlSchemaParseSimpleContent(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) { - xmlSchemaTypePtr type, subtype; + xmlSchemaTypePtr type, subtype, oldParentItem; xmlNodePtr child = NULL; xmlChar name[30]; @@ -7280,6 +7618,7 @@ xmlSchemaParseSimpleContent(xmlSchemaParserCtxtPtr ctxt, type->annot = xmlSchemaParseAnnotation(ctxt, schema, child); child = child->next; } + oldParentItem = ctxt->parentItem; ctxt->parentItem = type; subtype = NULL; if (IS_SCHEMA(child, "restriction")) { @@ -7298,6 +7637,7 @@ xmlSchemaParseSimpleContent(xmlSchemaParserCtxtPtr ctxt, "<simpleContent> has unexpected content.\n", NULL, NULL); } + ctxt->parentItem = oldParentItem; return (type); } @@ -7316,26 +7656,54 @@ static xmlSchemaTypePtr xmlSchemaParseComplexContent(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) { - xmlSchemaTypePtr type, subtype; + xmlSchemaTypePtr type, subtype, oldParentItem; xmlNodePtr child = NULL; xmlChar name[30]; + xmlAttrPtr attr; if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); - snprintf((char *) name, 30, "complexContent %d", ctxt->counter++ + 1); + snprintf((char *) name, 30, "#CC %d", ctxt->counter++ + 1); type = xmlSchemaAddType(ctxt, schema, name, NULL, node); if (type == NULL) return (NULL); type->type = XML_SCHEMA_TYPE_COMPLEX_CONTENT; type->node = node; + /* + * Check for illegal attributes. + */ + attr = node->properties; + while (attr != NULL) { + if (attr->ns == NULL) { + if ((!xmlStrEqual(attr->name, BAD_CAST "id")) && + (!xmlStrEqual(attr->name, BAD_CAST "mixed"))) + { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + NULL, NULL, attr); + } + attr = attr->next; + } type->id = xmlSchemaGetProp(ctxt, node, "id"); - + /* + * Handle attribute 'mixed'. + */ + if (xmlGetBooleanProp(ctxt, NULL, type, node, "mixed", 0)) { + if ((ctxt->ctxtType->flags & XML_SCHEMAS_TYPE_MIXED) == 0) + ctxt->ctxtType->flags |= XML_SCHEMAS_TYPE_MIXED; + } child = node->children; if (IS_SCHEMA(child, "annotation")) { type->annot = xmlSchemaParseAnnotation(ctxt, schema, child); child = child->next; } + oldParentItem = ctxt->parentItem; ctxt->parentItem = type; subtype = NULL; if (IS_SCHEMA(child, "restriction")) { @@ -7349,11 +7717,12 @@ xmlSchemaParseComplexContent(xmlSchemaParserCtxtPtr ctxt, } type->subtypes = subtype; if (child != NULL) { - xmlSchemaPErr2(ctxt, node, child, - XML_SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD, - "<complexContent> has unexpected content.\n", - NULL, NULL); + xmlSchemaPContentErr(ctxt, + XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, + NULL, NULL, node, child, + NULL, "(annotation?, (restriction | extension))"); } + ctxt->parentItem = oldParentItem; return (type); } @@ -7374,39 +7743,161 @@ xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, { xmlSchemaTypePtr type, subtype, ctxtType; xmlNodePtr child = NULL; - const xmlChar *name; + const xmlChar *name = NULL; const xmlChar *oldcontainer; - char buf[100]; + xmlAttrPtr attr; + const xmlChar *attrValue; + xmlChar *des = NULL; /* The reported designation. */ if ((ctxt == NULL) || (schema == NULL) || (node == NULL)) return (NULL); ctxtType = ctxt->ctxtType; - oldcontainer = ctxt->container; - name = xmlSchemaGetProp(ctxt, node, "name"); - if (name == NULL) { - snprintf(buf, 99, "complexType %d", ctxt->counter++ + 1); - name = (const xmlChar *)buf; - type = xmlSchemaAddType(ctxt, schema, name, NULL, node); - } else { - - /* local = xmlSchemaGetNamespace(ctxt, schema, node, name, &ns); */ - type = xmlSchemaAddType(ctxt, schema, name, schema->targetNamespace, node); - } - if (type == NULL) { - return (NULL); + if (topLevel) { + attr = xmlSchemaGetPropNode(node, "name"); + if (attr == NULL) { + xmlSchemaPMissingAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_MISSING, + (xmlChar **) &xmlSchemaElemDesCT, NULL, node, + "name", NULL); + return (NULL); + } else if (xmlSchemaPValAttrNode(ctxt, + (xmlChar **) &xmlSchemaElemDesCT, NULL, attr, + xmlSchemaGetBuiltInType(XML_SCHEMAS_NCNAME), &name) != 0) { + return (NULL); + } } - if (xmlGetBooleanProp(ctxt, NULL, type, node, "mixed", 0)) - type->flags |= XML_SCHEMAS_TYPE_MIXED; - - type->node = node; - type->type = XML_SCHEMA_TYPE_COMPLEX; - if (topLevel) - type->flags |= XML_SCHEMAS_TYPE_GLOBAL; - type->id = xmlSchemaGetProp(ctxt, node, "id"); - ctxt->container = name; + + if (topLevel == 0) { + char buf[40]; + /* + * Parse as local complex type definition. + */ + snprintf(buf, 39, "#CT %d", ctxt->counter++ + 1); + type = xmlSchemaAddType(ctxt, schema, (const xmlChar *)buf, NULL, node); + if (type == NULL) + return (NULL); + name = (const xmlChar *) buf; + type->node = node; + type->type = XML_SCHEMA_TYPE_COMPLEX; + /* + * TODO: We need the target namespace. + */ + } else { + /* + * Parse as global complex type definition. + */ + type = xmlSchemaAddType(ctxt, schema, name, schema->targetNamespace, node); + if (type == NULL) + return (NULL); + type->node = node; + type->type = XML_SCHEMA_TYPE_COMPLEX; + type->flags |= XML_SCHEMAS_TYPE_GLOBAL; + /* + * Set defaults. + */ + type->flags |= XML_SCHEMAS_TYPE_FINAL_DEFAULT; + type->flags |= XML_SCHEMAS_TYPE_BLOCK_DEFAULT; + } + /* + * Handle attributes. + */ + attr = node->properties; + while (attr != NULL) { + if (attr->ns == NULL) { + if (xmlStrEqual(attr->name, BAD_CAST "id")) { + /* + * Attribute "id". + */ + type->id = xmlSchemaGetProp(ctxt, node, "id"); + } else if (xmlStrEqual(attr->name, BAD_CAST "mixed")) { + /* + * Attribute "mixed". + */ + if (xmlSchemaPGetBoolNodeValue(ctxt, &des, type, + (xmlNodePtr) attr)) + type->flags |= XML_SCHEMAS_TYPE_MIXED; + } else if (topLevel) { + /* + * Attributes of global complex type definitions. + */ + if (xmlStrEqual(attr->name, BAD_CAST "name")) { + /* Pass. */ + } else if (xmlStrEqual(attr->name, BAD_CAST "abstract")) { + /* + * Attribute "abstract". + */ + if (xmlSchemaPGetBoolNodeValue(ctxt, &des, type, + (xmlNodePtr) attr)) + type->flags |= XML_SCHEMAS_TYPE_ABSTRACT; + } else if (xmlStrEqual(attr->name, BAD_CAST "final")) { + /* + * Attribute "final". + */ + attrValue = xmlSchemaGetNodeContent(ctxt, + (xmlNodePtr) attr); + if (xmlSchemaPValAttrBlockFinal(attrValue, + &(type->flags), + -1, + XML_SCHEMAS_TYPE_FINAL_EXTENSION, + XML_SCHEMAS_TYPE_FINAL_RESTRICTION, + -1, -1, -1) != 0) + { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, + &des, type, (xmlNodePtr) attr, + NULL, + "(#all | List of (extension | restriction))", + attrValue, NULL, NULL, NULL); + } + } else if (xmlStrEqual(attr->name, BAD_CAST "block")) { + /* + * Attribute "block". + */ + attrValue = xmlSchemaGetNodeContent(ctxt, + (xmlNodePtr) attr); + if (xmlSchemaPValAttrBlockFinal(attrValue, &(type->flags), + -1, + XML_SCHEMAS_TYPE_BLOCK_EXTENSION, + XML_SCHEMAS_TYPE_BLOCK_RESTRICTION, + -1, -1, -1) != 0) { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_S4S_ATTR_INVALID_VALUE, + &des, type, (xmlNodePtr) attr, + NULL, + "(#all | List of (extension | restriction)) ", + attrValue, NULL, NULL, NULL); + } + } else { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + &des, type, attr); + } + } else { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + &des, type, attr); + } + } else if (xmlStrEqual(attr->ns->href, xmlSchemaNs)) { + xmlSchemaPIllegalAttrErr(ctxt, + XML_SCHEMAP_S4S_ATTR_NOT_ALLOWED, + &des, type, attr); + } + attr = attr->next; + } + /* + * Set as default for attribute wildcards. + * This will be only changed if a complex type + * inherits an attribute wildcard from a base type. + */ + type->flags |= XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD; + /* + * And now for the children... + */ + oldcontainer = ctxt->container; + ctxt->container = name; child = node->children; if (IS_SCHEMA(child, "annotation")) { type->annot = xmlSchemaParseAnnotation(ctxt, schema, child); @@ -7414,10 +7905,11 @@ xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } ctxt->ctxtType = type; if (IS_SCHEMA(child, "simpleContent")) { - /* 3.4.3 : 2.2 - * Specifying mixed='true' when the <simpleContent> - * alternative is chosen has no effect - */ + /* + * 3.4.3 : 2.2 + * Specifying mixed='true' when the <simpleContent> + * alternative is chosen has no effect + */ if (type->flags & XML_SCHEMAS_TYPE_MIXED) type->flags ^= XML_SCHEMAS_TYPE_MIXED; type->subtypes = xmlSchemaParseSimpleContent(ctxt, schema, child); @@ -7427,7 +7919,9 @@ xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, child = child->next; } else { subtype = NULL; - + /* + * Parse model groups. + */ if (IS_SCHEMA(child, "all")) { subtype = xmlSchemaParseAll(ctxt, schema, child); child = child->next; @@ -7443,16 +7937,27 @@ xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, } if (subtype != NULL) type->subtypes = subtype; + /* + * Parse attribute decls/refs. + */ child = xmlSchemaParseAttrDecls(ctxt, schema, child, type); + /* + * Parse attribute wildcard. + */ + if (IS_SCHEMA(child, "anyAttribute")) { + type->attributeWildcard = xmlSchemaParseAnyAttribute(ctxt, schema, child); + child = child->next; + } } if (child != NULL) { - xmlSchemaPErr2(ctxt, node, child, - XML_SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD, - "Complex type definition \"%s\" has unexpected content.\n", - type->name, NULL); + xmlSchemaPContentErr(ctxt, + XML_SCHEMAP_S4S_ELEM_NOT_ALLOWED, + &des, type, node, child, + NULL, "(annotation?, (simpleContent | complexContent | " + "((group | all | choice | sequence)?, ((attribute | " + "attributeGroup)*, anyAttribute?))))"); } - if (type->attributeWildcard != NULL) - type->flags |= XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD; + FREE_AND_NULL(des); ctxt->container = oldcontainer; ctxt->ctxtType = ctxtType; return (type); @@ -7477,15 +7982,25 @@ xmlSchemaParseSchema(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node) int nberrors; xmlAttrPtr attr; + /* + * This one is called by xmlSchemaParse only and is used if + * the schema to be parsed was specified via the API; i.e. not + * automatically by the validated instance document. + */ if ((ctxt == NULL) || (node == NULL)) return (NULL); nberrors = ctxt->nberrors; ctxt->nberrors = 0; if (IS_SCHEMA(node, "schema")) { + xmlSchemaImportPtr import; + schema = xmlSchemaNewSchema(ctxt); if (schema == NULL) return (NULL); + /* + * Disable build of list of items. + */ attr = xmlSchemaGetPropNode(node, "targetNamespace"); if (attr != NULL) { xmlSchemaPValAttrNode(ctxt, NULL, NULL, attr, @@ -7497,6 +8012,31 @@ xmlSchemaParseSchema(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node) } else { schema->targetNamespace = NULL; } + /* + * Add the current ns name and location to the import table; + * this is needed to have a consistent mechanism, regardless + * if all schemata are constructed dynamically fired by the + * instance or if the schema to be used was specified via + * the API. + */ + import = xmlSchemaAddImport(ctxt, &(schema->schemasImports), + schema->targetNamespace); + if (import == NULL) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_FAILED_BUILD_IMPORT, + NULL, NULL, (xmlNodePtr) ctxt->doc, + "Internal error: xmlSchemaParseSchema, " + "failed to add an import entry", NULL); + xmlSchemaFree(schema); + schema = NULL; + return (NULL); + } + import->schemaLocation = ctxt->URL; + /* + * NOTE: We won't set the doc here, otherwise it will be freed + * if the import struct is freed. + * import->doc = ctxt->doc; + */ + /* TODO: Check id. */ schema->id = xmlSchemaGetProp(ctxt, node, "id"); xmlSchemaPValAttr(ctxt, NULL, NULL, node, "version", @@ -7526,6 +8066,8 @@ xmlSchemaParseSchema(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node) schema = NULL; } } + if (schema != NULL) + schema->counter = ctxt->counter; ctxt->nberrors = nberrors; #ifdef DEBUG if (schema == NULL) @@ -7547,6 +8089,61 @@ xmlSchemaParseSchema(xmlSchemaParserCtxtPtr ctxt, xmlNodePtr node) * * ************************************************************************/ +#if 0 /* Will be enabled if it is clear what options are needed. */ +/** + * xmlSchemaParserCtxtSetOptions: + * @ctxt: a schema parser context + * @options: a combination of xmlSchemaParserOption + * + * Sets the options to be used during the parse. + * + * Returns 0 in case of success, -1 in case of an + * API error. + */ +static int +xmlSchemaParserCtxtSetOptions(xmlSchemaParserCtxtPtr ctxt, + int options) + +{ + int i; + + if (ctxt == NULL) + return (-1); + /* + * WARNING: Change the start value if adding to the + * xmlSchemaParseOption. + */ + for (i = 1; i < (int) sizeof(int) * 8; i++) { + if (options & 1<<i) { + return (-1); + } + } + ctxt->options = options; + return (0); +} + +/** + * xmlSchemaValidCtxtGetOptions: + * @ctxt: a schema parser context + * + * Returns the option combination of the parser context. + */ +static int +xmlSchemaParserCtxtGetOptions(xmlSchemaParserCtxtPtr ctxt) + +{ + if (ctxt == NULL) + return (-1); + else + return (ctxt->options); +} + + void *curItems; /* used for dynamic addition of schemata */ + int nbCurItems; /* used for dynamic addition of schemata */ + int sizeCurItems; /* used for dynamic addition of schemata */ + +#endif + /** * xmlSchemaNewParserCtxt: * @URL: the location of the schema @@ -7578,6 +8175,41 @@ xmlSchemaNewParserCtxt(const char *URL) } /** + * xmlSchemaNewParserCtxtUseDict: + * @URL: the location of the schema + * @dict: the dictionary to be used + * + * Create an XML Schemas parse context for that file/resource expected + * to contain an XML Schemas file. + * + * Returns the parser context or NULL in case of error + */ +static xmlSchemaParserCtxtPtr +xmlSchemaNewParserCtxtUseDict(const char *URL, xmlDictPtr dict) +{ + xmlSchemaParserCtxtPtr ret; + /* + if (URL == NULL) + return (NULL); + */ + + ret = (xmlSchemaParserCtxtPtr) xmlMalloc(sizeof(xmlSchemaParserCtxt)); + if (ret == NULL) { + xmlSchemaPErrMemory(NULL, "allocating schema parser context", + NULL); + return (NULL); + } + memset(ret, 0, sizeof(xmlSchemaParserCtxt)); + ret->dict = dict; + xmlDictReference(dict); + if (URL != NULL) + ret->URL = xmlDictLookup(dict, (const xmlChar *) URL, -1); + ret->includes = 0; + return (ret); +} + + +/** * xmlSchemaNewMemParserCtxt: * @buffer: a pointer to a char array containing the schemas * @size: the size of the array @@ -7653,6 +8285,13 @@ xmlSchemaFreeParserCtxt(xmlSchemaParserCtxtPtr ctxt) return; if (ctxt->doc != NULL && !ctxt->preserve) xmlFreeDoc(ctxt->doc); + if (ctxt->assemble != NULL) { + xmlFree((xmlSchemaTypePtr *) ctxt->assemble->items); + xmlFree(ctxt->assemble); + } + if (ctxt->vctxt != NULL) { + xmlSchemaFreeValidCtxt(ctxt->vctxt); + } xmlDictFree(ctxt->dict); xmlFree(ctxt); } @@ -7788,122 +8427,114 @@ xmlSchemaBuildAContentModel(xmlSchemaTypePtr type, break; } case XML_SCHEMA_TYPE_ELEMENT:{ - xmlSchemaElementPtr elem = (xmlSchemaElementPtr) type; + xmlAutomataStatePtr oldstate; + xmlSchemaElementPtr particle, elemDecl; + + /* + * IMPORTANT: This puts element declarations + * (and never element decl. references) into the + * automaton. This is crucial and should not be changed, + * since validating functions rely now on it. + */ + particle = (xmlSchemaElementPtr) type; + if (particle->ref != NULL) { + if (particle->refDecl == NULL) { + /* + * Skip content model creation if the reference + * did not resolve to a declaration. + */ + break; + } else { + /* + * Referenced global element declaration. + */ + elemDecl = particle->refDecl; + } + } else { + /* + * Anonymous element declaration. + */ + elemDecl = particle; + } - /* TODO : handle the namespace too */ - xmlAutomataStatePtr oldstate = ctxt->state; + oldstate = ctxt->state; - if (elem->maxOccurs >= UNBOUNDED) { - if (elem->minOccurs > 1) { + if (particle->maxOccurs >= UNBOUNDED) { + if (particle->minOccurs > 1) { xmlAutomataStatePtr tmp; int counter; ctxt->state = xmlAutomataNewEpsilon(ctxt->am, - oldstate, - NULL); + oldstate, NULL); oldstate = ctxt->state; - counter = xmlAutomataNewCounter(ctxt->am, - elem->minOccurs - - 1, UNBOUNDED); - - if (elem->refDecl != NULL) { - xmlSchemaBuildAContentModel((xmlSchemaTypePtr) - elem->refDecl, - ctxt, - elem->refDecl-> - name); - } else { - ctxt->state = - xmlAutomataNewTransition2(ctxt->am, - ctxt->state, NULL, - elem->name, - elem->targetNamespace, - type); - } + particle->minOccurs - 1, UNBOUNDED); + ctxt->state = + xmlAutomataNewTransition2(ctxt->am, + ctxt->state, NULL, + elemDecl->name, + elemDecl->targetNamespace, + (xmlSchemaTypePtr) elemDecl); tmp = ctxt->state; xmlAutomataNewCountedTrans(ctxt->am, tmp, oldstate, - counter); + counter); ctxt->state = xmlAutomataNewCounterTrans(ctxt->am, tmp, NULL, - counter); + counter); - } else { - if (elem->refDecl != NULL) { - xmlSchemaBuildAContentModel((xmlSchemaTypePtr) - elem->refDecl, - ctxt, - elem->refDecl-> - name); - } else { - ctxt->state = - xmlAutomataNewTransition2(ctxt->am, - ctxt->state, NULL, - elem->name, - elem->targetNamespace, - type); - } + } else { + ctxt->state = + xmlAutomataNewTransition2(ctxt->am, + ctxt->state, NULL, + elemDecl->name, + elemDecl->targetNamespace, + (xmlSchemaTypePtr) elemDecl); xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate); - if (elem->minOccurs == 0) { + if (particle->minOccurs == 0) { /* basically an elem* */ xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state); } } - } else if ((elem->maxOccurs > 1) || (elem->minOccurs > 1)) { + } else if ((particle->maxOccurs > 1) || (particle->minOccurs > 1)) { xmlAutomataStatePtr tmp; int counter; ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL); oldstate = ctxt->state; - counter = xmlAutomataNewCounter(ctxt->am, - elem->minOccurs - 1, - elem->maxOccurs - 1); - - if (elem->refDecl != NULL) { - xmlSchemaBuildAContentModel((xmlSchemaTypePtr) - elem->refDecl, ctxt, - elem->refDecl->name); - } else { - ctxt->state = xmlAutomataNewTransition2(ctxt->am, - ctxt->state, - NULL, - elem->name, - elem->targetNamespace, - type); - } + particle->minOccurs - 1, + particle->maxOccurs - 1); + ctxt->state = xmlAutomataNewTransition2(ctxt->am, + ctxt->state, + NULL, + elemDecl->name, + elemDecl->targetNamespace, + (xmlSchemaTypePtr) elemDecl); tmp = ctxt->state; xmlAutomataNewCountedTrans(ctxt->am, tmp, oldstate, - counter); + counter); ctxt->state = xmlAutomataNewCounterTrans(ctxt->am, tmp, - NULL, - counter); - if (elem->minOccurs == 0) { + NULL, counter); + if (particle->minOccurs == 0) { /* basically an elem? */ xmlAutomataNewEpsilon(ctxt->am, oldstate, - ctxt->state); + ctxt->state); } - } else { - if (elem->refDecl != NULL) { - xmlSchemaBuildAContentModel((xmlSchemaTypePtr) - elem->refDecl, ctxt, - elem->refDecl->name); - } else { - ctxt->state = xmlAutomataNewTransition2(ctxt->am, - ctxt->state, - NULL, - elem->name, - elem->targetNamespace, - type); - } - if (elem->minOccurs == 0) { + } else { + ctxt->state = xmlAutomataNewTransition2(ctxt->am, + ctxt->state, + NULL, + elemDecl->name, + elemDecl->targetNamespace, + (xmlSchemaTypePtr) elemDecl); + if (particle->minOccurs == 0) { /* basically an elem? */ xmlAutomataNewEpsilon(ctxt->am, oldstate, - ctxt->state); + ctxt->state); } } break; @@ -8088,19 +8719,32 @@ xmlSchemaBuildAContentModel(xmlSchemaTypePtr type, */ if (subtypes->ref != NULL) xmlSchemaBuildAContentModel(subtypes, ctxt, name); - elem = (xmlSchemaElementPtr) subtypes; - /* TODO : handle the namespace too */ + elem = (xmlSchemaElementPtr) subtypes; + /* + * NOTE: The {max occurs} of all the particles in the + * {particles} of the group must be 0 or 1. + */ if ((elem->minOccurs == 1) && (elem->maxOccurs == 1)) { - xmlAutomataNewOnceTrans(ctxt->am, ctxt->state, - ctxt->state, elem->name, 1, - 1, subtypes); - } else { - xmlAutomataNewCountTrans(ctxt->am, ctxt->state, - ctxt->state, elem->name, - elem->minOccurs, - elem->maxOccurs, + xmlAutomataNewOnceTrans2(ctxt->am, ctxt->state, + ctxt->state, + elem->name, + elem->targetNamespace, + 1, 1, subtypes); + } else if ((elem->minOccurs == 0) && + (elem->maxOccurs == 1)) { + + xmlAutomataNewCountTrans2(ctxt->am, ctxt->state, + ctxt->state, + elem->name, + elem->targetNamespace, + 0, + 1, subtypes); } + /* + * NOTE: if maxOccurs == 0 then no transition will be + * created. + */ subtypes = subtypes->next; } lax = type->minOccurs == 0; @@ -8116,7 +8760,12 @@ xmlSchemaBuildAContentModel(xmlSchemaTypePtr type, case XML_SCHEMA_TYPE_EXTENSION: if (type->baseType != NULL) { xmlSchemaTypePtr subtypes; - + + /* + * TODO: Circular definitions will be checked at the + * constraint level. So remove this when the complex type + * constraints are implemented. + */ if (type->recurse) { /* TODO: Change the error code. */ xmlSchemaPCustomErr(ctxt, @@ -8137,23 +8786,50 @@ xmlSchemaBuildAContentModel(xmlSchemaTypePtr type, xmlSchemaBuildAContentModel(type->subtypes, ctxt, name); break; case XML_SCHEMA_TYPE_GROUP: - if (type->subtypes == NULL) { - xmlSchemaTypePtr rgroup; - if (type->ref != NULL) { - rgroup = xmlSchemaGetGroup(ctxt->schema, type->ref, - type->refNs); - if (rgroup == NULL) { - xmlSchemaPResCompAttrErr(ctxt, - XML_SCHEMAP_SRC_RESOLVE, - NULL, type, NULL, - "ref", type->ref, type->refNs, - XML_SCHEMA_TYPE_GROUP, NULL); - return; - } - xmlSchemaBuildAContentModel(rgroup, ctxt, name); - break; - } - } + /* + * Handle model group definition references. + * NOTE: type->subtypes is the referenced model grop definition; + * and type->subtypes->subtypes is the model group (i.e. <all> or + * <choice> or <sequence>). + */ + if ((type->ref != NULL) && (type->subtypes != NULL) && + (type->subtypes->subtypes != NULL)) { + xmlSchemaTypePtr modelGr; + xmlAutomataStatePtr start, end; + + modelGr = type->subtypes->subtypes; + start = ctxt->state; + end = xmlAutomataNewState(ctxt->am); + if (type->maxOccurs == 1) { + ctxt->state = start; + xmlSchemaBuildAContentModel(modelGr, ctxt, name); + xmlAutomataNewEpsilon(ctxt->am, ctxt->state, end); + } else { + int counter; + xmlAutomataStatePtr hop; + int maxOccurs = type->maxOccurs == UNBOUNDED ? + UNBOUNDED : type->maxOccurs - 1; + int minOccurs = + type->minOccurs < 1 ? 0 : type->minOccurs - 1; + + counter = + xmlAutomataNewCounter(ctxt->am, minOccurs, maxOccurs); + hop = xmlAutomataNewState(ctxt->am); + ctxt->state = start; + xmlSchemaBuildAContentModel(modelGr, ctxt, name); + xmlAutomataNewEpsilon(ctxt->am, ctxt->state, hop); + xmlAutomataNewCountedTrans(ctxt->am, hop, start, + counter); + xmlAutomataNewCounterTrans(ctxt->am, hop, end, + counter); + } + if (type->minOccurs == 0) { + xmlAutomataNewEpsilon(ctxt->am, start, end); + } + ctxt->state = end; + break; + } + break; case XML_SCHEMA_TYPE_COMPLEX: case XML_SCHEMA_TYPE_COMPLEX_CONTENT: if (type->subtypes != NULL) @@ -8171,30 +8847,24 @@ xmlSchemaBuildAContentModel(xmlSchemaTypePtr type, /** * xmlSchemaBuildContentModel: - * @elem: the element + * @type: the type definition (or reference) * @ctxt: the schema parser context * @name: the element name * - * Builds the content model of the element. + * Builds the content model of the complex type. */ static void -xmlSchemaBuildContentModel(xmlSchemaElementPtr elem, +xmlSchemaBuildContentModel(xmlSchemaTypePtr type, xmlSchemaParserCtxtPtr ctxt, const xmlChar * name) { xmlAutomataStatePtr start; - if (elem->contModel != NULL) - return; - if (elem->subtypes == NULL) { - elem->contentType = XML_SCHEMA_CONTENT_ANY; - return; - } - if (elem->subtypes->type != XML_SCHEMA_TYPE_COMPLEX) - return; - if ((elem->subtypes->contentType == XML_SCHEMA_CONTENT_BASIC) || - (elem->subtypes->contentType == XML_SCHEMA_CONTENT_SIMPLE)) - return; + if ((type->type != XML_SCHEMA_TYPE_COMPLEX) || (type->ref != NULL) || + (type->contentType == XML_SCHEMA_CONTENT_BASIC) || + (type->contentType == XML_SCHEMA_CONTENT_SIMPLE) || + (type->contModel != NULL)) + return; #ifdef DEBUG_CONTENT xmlGenericError(xmlGenericErrorContext, @@ -8204,28 +8874,29 @@ xmlSchemaBuildContentModel(xmlSchemaElementPtr elem, ctxt->am = xmlNewAutomata(); if (ctxt->am == NULL) { xmlGenericError(xmlGenericErrorContext, - "Cannot create automata for elem %s\n", name); + "Cannot create automata for complex tpye %s\n", name); return; } start = ctxt->state = xmlAutomataGetInitState(ctxt->am); - xmlSchemaBuildAContentModel(elem->subtypes, ctxt, name); + xmlSchemaBuildAContentModel(type, ctxt, name); xmlAutomataSetFinalState(ctxt->am, ctxt->state); - elem->contModel = xmlAutomataCompile(ctxt->am); - if (elem->contModel == NULL) { - xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, - NULL, (xmlSchemaTypePtr) elem, NULL, + type->contModel = xmlAutomataCompile(ctxt->am); + if (type->contModel == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, type->node, "Failed to compile the content model", NULL); - } else if (xmlRegexpIsDeterminist(elem->contModel) != 1) { + } else if (xmlRegexpIsDeterminist(type->contModel) != 1) { xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_NOT_DETERMINISTIC, /* XML_SCHEMAS_ERR_NOTDETERMINIST, */ - NULL, (xmlSchemaTypePtr) elem, NULL, + NULL, type, type->node, "The content model is not determinist", NULL); } else { #ifdef DEBUG_CONTENT_REGEXP xmlGenericError(xmlGenericErrorContext, "Content model of %s:\n", name); - xmlRegexpPrint(stderr, elem->contModel); + xmlRegexpPrint(stderr, type->contModel); #endif } ctxt->state = NULL; @@ -9205,7 +9876,32 @@ xmlSchemaBuildCompleteAttributeWildcard(xmlSchemaParserCtxtPtr ctxt, if (attrs->type == XML_SCHEMA_TYPE_ATTRIBUTEGROUP) { xmlSchemaAttributeGroupPtr group; - group = (xmlSchemaAttributeGroupPtr) attrs; + group = (xmlSchemaAttributeGroupPtr) attrs; + /* + * Handle attribute group references. + */ + if (group->ref != NULL) { + if (group->refItem == NULL) { + /* + * TODO: Should we raise a warning here? + */ + /* + * The referenced attribute group definition could not + * be resolved beforehand, so skip. + */ + attrs = attrs->next; + continue; + } else + group = group->refItem; + } + /* + * For every attribute group definition, an intersected wildcard + * will be created (assumed that a wildcard exists on the + * particular attr. gr. def. or on any contained attr. gr. def + * at all). + * The flag XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED ensures + * that the intersection will be performed only once. + */ if ((group->flags & XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED) == 0) { if (group->attributes != NULL) { if (xmlSchemaBuildCompleteAttributeWildcard(ctxt, @@ -9228,6 +9924,7 @@ xmlSchemaBuildCompleteAttributeWildcard(xmlSchemaParserCtxtPtr ctxt, /* * Although the complete wildcard might not correspond to any * node in the schema, we will save this context node. + * TODO: Hmm, is this sane? */ (*completeWild)->node = group->attributeWildcard->node; @@ -9243,6 +9940,33 @@ xmlSchemaBuildCompleteAttributeWildcard(xmlSchemaParserCtxtPtr ctxt, return (0); } +static int +xmlSchemaGetEffectiveValueConstraint(xmlSchemaAttributePtr item, + int *fixed, + const xmlChar **value, + xmlSchemaValPtr *val) +{ + *fixed = 0; + *value = NULL; + if (val != 0) + *val = NULL; + + if (item->defValue == NULL) + item = item->refDecl; + + if (item == NULL) + return (0); + + if (item->defValue != NULL) { + *value = item->defValue; + if (val != 0) + *val = item->defVal; + if (item->flags & XML_SCHEMAS_ATTR_FIXED) + *fixed = 1; + return (1); + } + return (0); +} /** * xmlSchemaMatchesWildcardNs: * @wild: the wildcard @@ -9295,12 +10019,15 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr xmlSchemaTypePtr anyType; int baseIsAnyType = 0; xmlChar *str = NULL; + int err = 0; anyType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE); /* * Complex Type Definition with complex content Schema Component. * * Attribute uses. + * TODO: Add checks for absent referenced attribute declarations and + * simple types. */ if (type->attributeUses != NULL) { xmlSchemaPErr(ctxt, type->node, XML_SCHEMAP_INTERNAL, @@ -9348,8 +10075,11 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr if ((type->subtypes != NULL) && ((type->subtypes->type == XML_SCHEMA_TYPE_COMPLEX_CONTENT) || (type->subtypes->type == XML_SCHEMA_TYPE_SIMPLE_CONTENT))) { + /* + * type --> (<simpleContent>|<complexContent>) + * --> (<restriction>|<extension>) --> attributes + */ attrs = type->subtypes->subtypes->attributes; - type->attributeWildcard = type->subtypes->subtypes->attributeWildcard; } else { /* Short hand form of the complexType. */ attrs = type->attributes; @@ -9357,27 +10087,19 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr /* * Handle attribute wildcards. */ - if (xmlSchemaBuildCompleteAttributeWildcard(ctxt, - attrs, &type->attributeWildcard) == -1) { - if ((type->attributeWildcard != NULL) && - /* Either we used the short hand form... */ - ((type->subtypes == NULL) || - /* Or complexType -> restriction/extension */ - (type->attributeWildcard != type->subtypes->subtypes->attributeWildcard))) - type->flags |= XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD; - return (-1); - } + err = xmlSchemaBuildCompleteAttributeWildcard(ctxt, + attrs, &type->attributeWildcard); /* - * TODO: This "onwed_attr_wildcard" is quite sensless: we should - * create the wildcard right from the start on the complexType, - * rather than on the <restriction>/<extension>. + * NOTE: During the parse time, the wildcard is created on the complexType + * directly, if encountered in a <restriction> or <extension> element. */ - if ((type->attributeWildcard != NULL) && - /* Either we used the short hand form... */ - ((type->subtypes == NULL) || - /* Or complexType -> restriction/extension */ - (type->attributeWildcard != type->subtypes->subtypes->attributeWildcard))) - type->flags |= XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD; + if (err == -1) { + xmlSchemaPErr(ctxt, type->node, XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaBuildAttributeValidation: " + "failed to build an intersected attribute wildcard.\n", + NULL, NULL); + return (-1); + } if ((type->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION) && ((baseIsAnyType) || @@ -9395,6 +10117,12 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr /* * Just inherit the wildcard. */ + /* + * NOTE: This is the only case where an attribute + * wildcard is shared. + */ + if (type->flags & XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD) + type->flags ^= XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD; type->attributeWildcard = baseType->attributeWildcard; } } @@ -9518,6 +10246,8 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr type->attributeUses = uses; } else { int found; + const xmlChar *bEffValue; + int effFixed; cur = uses; while (cur != NULL) { @@ -9529,7 +10259,8 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr xmlStrEqual(xmlSchemaGetAttrTargetNsURI(cur->attr), xmlSchemaGetAttrTargetNsURI(base->attr))) { - found = 1; + found = 1; + if ((cur->attr->occurs == XML_SCHEMAS_ATTR_USE_OPTIONAL) && (base->attr->occurs == XML_SCHEMAS_ATTR_USE_REQUIRED)) { /* @@ -9556,14 +10287,49 @@ xmlSchemaBuildAttributeValidation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaTypePtr FREE_AND_NULL(str) } else { /* + * 2.1.3 [Definition:] Let the effective value + * constraint of an attribute use be its {value + * constraint}, if present, otherwise its {attribute + * declaration}'s {value constraint} . + */ + xmlSchemaGetEffectiveValueConstraint(base->attr, &effFixed, + &bEffValue, 0); + /* + * 2.1.3 ... one of the following must be true + * + * 2.1.3.1 B's ·effective value constraint· is + * ·absent· or default. + */ + if ((bEffValue != NULL) && + (effFixed == 1)) { + const xmlChar *rEffValue = NULL; + + xmlSchemaGetEffectiveValueConstraint(base->attr, &effFixed, + &rEffValue, 0); + /* + * 2.1.3.2 R's ·effective value constraint· is + * fixed with the same string as B's. + */ + if ((effFixed == 0) || + (! xmlStrEqual(rEffValue, bEffValue))) { + xmlSchemaPAttrUseErr(ctxt, + XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3, + NULL, type, NULL, cur->attr, + "The effective value constraint of the " + "attribute use is inconsistent with " + "its correspondent of the base type", + NULL); + } + } + /* + * TODO: derivation-ok-restriction 2.1.2 ({type definition} must be validly derived) + */ + /* * Override the attribute use. */ base->attr = cur->attr; } - /* - * TODO: derivation-ok-restriction 2.1.2 ({type definition} must be validly derived) - * TODO: derivation-ok-restriction 2.1.3 - */ + break; } base = base->next; @@ -10632,8 +11398,8 @@ xmlSchemaCheckCVCSimpleType(xmlSchemaValidCtxtPtr ctxt, * 1 It is schema-valid with respect to that definition as defined * by Datatype Valid in [XML Schemas: Datatypes]. */ - ctxt->type = type; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, fireErrors, 1, 1); + ret = xmlSchemaValidateSimpleTypeValue(ctxt, type, value, + fireErrors, 1, 1, 1); return (ret); /* * 2.1 If The definition is ENTITY or is validly derived from ENTITY given @@ -10652,153 +11418,155 @@ xmlSchemaCheckCVCSimpleType(xmlSchemaValidCtxtPtr ctxt, return (0); } - +#endif + static int -xmlSchemaCheckCOSValidDefault(xmlSchemaParserCtxtPtr ctxt, - xmlSchemaElementPtr elemDecl) -{ - xmlSchemaTypePtr typeDef; - if (elemDecl->value == NULL) - return (0); - if (elemDecl->subtypes == NULL) { - xmlSchemaPCustomErr(ctxt, - XML_SCHEMAP_INTERNAL, - NULL, (xmlSchemaTypePtr) elemDecl, elemDecl->node, - "Internal error: xmlSchemaCheckCOSValidDefault, " - "the element decl. '%s' has no type assigned", elemDecl->name); - return (-1); +xmlSchemaCreatePCtxtOnVCtxt(xmlSchemaValidCtxtPtr vctxt) +{ + if (vctxt->pctxt == NULL) { + vctxt->pctxt =xmlSchemaNewParserCtxtUseDict("*", vctxt->schema->dict); + /* vctxt->pctxt = xmlSchemaNewParserCtxt("*"); */ + if (vctxt->pctxt == NULL) { + xmlSchemaVErr(vctxt, NULL, + XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaCreatePCtxtOnVCtxt, " + "failed to create a temp. parser context.\n", + NULL, NULL); + return (-1); + } + /* TODO: Pass user data. */ + xmlSchemaSetParserErrors(vctxt->pctxt, vctxt->error, vctxt->warning, NULL); } - typeDef = elemDecl->subtypes; - if ((typeDef->type == XML_SCHEMA_TYPE_SIMPLE) || - ((typeDef->type == XML_SCHEMA_TYPE_COMPLEX) && - ((typeDef->contentType == XML_SCHEMA_CONTENT_SIMPLE) || - (typeDef->contentType == XML_SCHEMA_CONTENT_BASIC)))) { - xmlSchemaValidCtxtPtr vctxt; - xmlAttrPtr attr; - int ret = 0; - /* - * 1 If the type definition is a simple type definition, then the string - * must be ·valid· with respect to that definition as defined by String - * Valid (§3.14.4). - */ - /* - * 2.2.1 If the {content type} is a simple type definition, then the - * string must be ·valid· with respect to that simple type definition - * as defined by String Valid (§3.14.4). - */ - /* - * TODO: ? - */ + return (0); +} - vctxt = xmlSchemaNewValidCtxt(NULL); - if (vctxt == NULL) { - xmlSchemaPErr(ctxt, elemDecl->node, +static int +xmlSchemaCreateVCtxtOnPCtxt(xmlSchemaParserCtxtPtr ctxt) +{ + if (ctxt->vctxt == NULL) { + ctxt->vctxt = xmlSchemaNewValidCtxt(NULL); + if (ctxt->vctxt == NULL) { + xmlSchemaPErr(ctxt, NULL, XML_SCHEMAP_INTERNAL, - "Internal error: xmlSchemaCheckCOSValidDefault, " - "creation of a new validation context failed.\n", + "Internal error: xmlSchemaCreatePCtxtOnVCtxt, " + "failed to create a temp. validation context.\n", NULL, NULL); - return (-1); + return (-1); } - /* - * TODO: This won't work. - */ - if (typeDef->type == XML_SCHEMA_TYPE_SIMPLE) - ret = xmlSchemaCheckCVCSimpleType(vctxt, elemDecl->value, typeDef, 0); - if (ret > 0) { - if (elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) - attr = xmlSchemaGetPropNode(elemDecl->node, "fixed"); - else - attr = xmlSchemaGetPropNode(elemDecl->node, "default"); - if (ctxt != NULL) { - xmlSchemaPSimpleTypeErr(ctxt, - XML_SCHEMAP_COS_VALID_DEFAULT_2_1, - NULL, (xmlSchemaTypePtr) elemDecl, (xmlNodePtr) attr, - elemDecl->subtypes, NULL, elemDecl->value, - NULL, NULL, NULL); - return (ctxt->err); - } - ret = ctxt->err; - } else if (ret < 0) { - xmlSchemaPErr(ctxt, elemDecl->node, - XML_SCHEMAP_INTERNAL, - "Internal error: xmlSchemaCheckCOSValidDefault, " - "while validating the default/fixed value.\n", - NULL, NULL); - } - xmlSchemaFreeValidCtxt(vctxt); - return (ret); - } else { + /* TODO: Pass user data. */ + xmlSchemaSetValidErrors(ctxt->vctxt, ctxt->error, ctxt->warning, NULL); + } + return (0); +} + +/** + * xmlSchemaCheckCOSValidDefault: + * @ctxt: the schema parser context + * @type: the simple type definition + * @value: the default value + * @node: an optional node (the holder of the value) + * + * Checks the "cos-valid-default" constraints. + * + * Returns 0 if the constraints are satisfied, + * if not, a positive error code and -1 on internal + * errors. + */ +static int +xmlSchemaCheckCOSValidDefault(xmlSchemaParserCtxtPtr pctxt, + xmlSchemaValidCtxtPtr vctxt, + xmlSchemaTypePtr type, + const xmlChar *value, + xmlNodePtr node) +{ + int ret = 0; + + /* + * cos-valid-default: + * Schema Component Constraint: Element Default Valid (Immediate) + * For a string to be a valid default with respect to a type + * definition the appropriate case among the following must be true: + */ + /* + * NOTE: This has to work without a given node (the holder of the + * value), since it should work on the component, i.e. an underlying + * DOM must not be mandatory. + */ + if ((pctxt == NULL) || (vctxt == NULL)) { + xmlSchemaPErr(pctxt, node, + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckCOSValidDefault, " + "bad arguments: the parser and/or validation context is " + "missing.\n", + NULL, NULL); + return (-1); + } + if IS_COMPLEX_TYPE(type) { /* * Complex type. * * 2.1 its {content type} must be a simple type definition or mixed. */ - if ((elemDecl->subtypes->contentType != XML_SCHEMA_CONTENT_SIMPLE) && - (elemDecl->subtypes->contentType != XML_SCHEMA_CONTENT_BASIC) && - (elemDecl->subtypes->contentType == XML_SCHEMA_CONTENT_MIXED)) { - xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_COS_VALID_DEFAULT_2_1, - NULL, (xmlSchemaTypePtr) elemDecl, NULL, - "The content type must be a simple type definition or mixed.", - NULL); - return(ctxt->err); - } - if ((elemDecl->subtypes->contentType != XML_SCHEMA_CONTENT_SIMPLE) && - (elemDecl->subtypes->contentType != XML_SCHEMA_CONTENT_BASIC)) { - xmlSchemaValidCtxtPtr vctxt; - xmlAttrPtr attr; - int ret; - - /* TODO: Avoid creation of a new context. */ - vctxt = xmlSchemaNewValidCtxt(NULL); - if (vctxt == NULL) { - xmlSchemaPErr(ctxt, elemDecl->node, - XML_SCHEMAP_INTERNAL, - "Internal error: xmlSchemaCheckCOSValidDefault, " - "creation of a new validation context failed.\n", - NULL, NULL); - return (-1); - } - vctxt->type = elemDecl->subtypes; - ret = xmlSchemaValidateSimpleTypeValue(vctxt, elemDecl->value, 0, 1, 1); - if (ret > 0) { - if (elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) - attr = xmlSchemaGetPropNode(elemDecl->node, "fixed"); - else - attr = xmlSchemaGetPropNode(elemDecl->node, "default"); - if (ctxt != NULL) { - xmlSchemaPSimpleTypeErr(ctxt, - XML_SCHEMAP_COS_VALID_DEFAULT_2_1, - NULL, (xmlSchemaTypePtr) elemDecl, (xmlNodePtr) attr, - elemDecl->subtypes, NULL, elemDecl->value, - NULL, NULL, NULL); - return (ctxt->err); - } - ret = ctxt->err; - } else if (ret < 0) { - xmlSchemaPErr(ctxt, elemDecl->node, - XML_SCHEMAP_INTERNAL, - "Internal error: xmlSchemaCheckCOSValidDefault, " - "while validating the default/fixed value.\n", - NULL, NULL); - } - xmlSchemaFreeValidCtxt(vctxt); - return (ret); - } else { + /* + * TODO: Adjust this when the content type will be computed + * correctly. + */ + if ((type->contentType != XML_SCHEMA_CONTENT_SIMPLE) && + (type->contentType != XML_SCHEMA_CONTENT_BASIC) && + (type->contentType != XML_SCHEMA_CONTENT_MIXED)) { + xmlSchemaPSimpleTypeErr(pctxt, + XML_SCHEMAP_COS_VALID_DEFAULT_2_1, + NULL, NULL, node, + type, NULL, NULL, + "If the type of a constraint value is complex, its content " + "type must be mixed or a simple type", + NULL, NULL); + return(XML_SCHEMAP_COS_VALID_DEFAULT_2_1); + } + if (type->contentType == XML_SCHEMA_CONTENT_MIXED) { /* * 2.2.2 If the {content type} is mixed, then the {content type}'s * particle must be ·emptiable· as defined by Particle Emptiable * (§3.9.6). */ + /* - * TODO: Implement this. + * URGENT TODO: Implement this. */ + return (0); } - } - - return (0); + } + /* + * 1 If the type definition is a simple type definition, then the string + * must be ·valid· with respect to that definition as defined by String + * Valid (§3.14.4). + * + * AND + * + * 2.2.1 If the {content type} is a simple type definition, then the + * string must be ·valid· with respect to that simple type definition + * as defined by String Valid (§3.14.4). + */ + vctxt->node = node; + vctxt->cur = NULL; + ret = xmlSchemaValidateSimpleTypeValue(vctxt, type, value, 1, 1, 1, 0); + /* ret = xmlSchemaCheckCVCSimpleType(vctxt, elemDecl->value, typeDef, 0); */ + if (ret < 0) { + xmlSchemaPErr(pctxt, node, + /* NOTNICE: error code: This function will be used during + * schema construction and xsi:type validation. + */ + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckCOSValidDefault, " + "while validating a value constaint value.\n", + NULL, NULL); + + } + return (ret); } +#if 0 /* Not yet used code for CT schema validation */ /** * xmlSchemaGetSTContentOfCT: * @ctxt: the schema parser context @@ -10831,36 +11599,7 @@ xmlSchemaGetSTContentOfCT(xmlSchemaParserCtxtPtr ctxt, } -static xmlSchemaTypePtr -xmlSchemaGetContentType(xmlSchemaParserCtxtPtr ctxt, - xmlSchemaTypePtr type) -{ - if (type->baseType == NULL) { - xmlSchemaPCustomErr(ctxt, - XML_SCHEMAP_INTERNAL, - NULL, type, NULL, - "Internal error: xmlSchemaGetContentType, " - "the complex type '%s' has no base type", type->name); - return (NULL); - } - if (type->subtypes->type == XML_SCHEMA_TYPE_SIMPLE_CONTENT) { - if ((type->baseType->type == XML_SCHEMA_TYPE_COMPLEX) && - ((type->baseType->contentType == XML_SCHEMA_CONTENT_SIMPLE) || - (type->baseType->contentType == XML_SCHEMA_CONTENT_BASIC)) && - (type->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION)) { - /* - * 1 If the type definition ·resolved· to by the ·actual value· of - * the base [attribute] is a complex type definition whose own - * {content type} is a simple type definition and the <restriction> - * alternative is chosen - */ - - } - } else { - - } -} /** * xmlSchemaCheckCOSCTExtends: @@ -10954,6 +11693,383 @@ xmlSchemaCheckCOSCTExtends(xmlSchemaParserCtxtPtr ctxt, } +static int +xmlSchemaCheckSRCCT(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaTypePtr type) +{ + xmlSchemaTypePtr base, content; + int OK = 0; + + /* + * TODO: Adjust the error codes here, as I used + * XML_SCHEMAP_SRC_CT_1 only yet. + */ + /* + * Schema Representation Constraint: + * Complex Type Definition Representation OK + */ + base = type->baseType; + if (base == NULL) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, NULL, type, NULL, + "Internal error: xmlSchemaCheckSRCCT, '%s', no base type", + type->name); + return (-1); + } + + if (type->subtypes != NULL) { + if (type->subtypes->type == XML_SCHEMA_TYPE_COMPLEX_CONTENT) { + if IS_COMPLEX_TYPE(base) { + /* + * 1 If the <complexContent> alternative is chosen, the type definition + * ·resolved· to by the ·actual value· of the base [attribute] + * must be a complex type definition; + */ + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "The base type is not a complex type", NULL); + return (XML_SCHEMAP_SRC_CT_1); + } + } else if (type->subtypes->type == XML_SCHEMA_TYPE_SIMPLE_CONTENT) { + + if IS_SIMPLE_TYPE(base) { + if (type->flags & + XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION) { + /* + * 2.1.3 only if the <extension> alternative is also + * chosen, a simple type definition. + */ + /* TODO: Change error code to ..._SRC_CT_2_1_3. */ + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "A complex type (simple content) cannot restrict " + "an other simple type", + NULL); + return (XML_SCHEMAP_SRC_CT_1); + } + OK = 1; + + } else { /* if IS_SIMPLE_TYPE(base) */ + if (base->contentType = XML_SCHEMA_CONTENT_MIXED) { + /* + * 2.1.2 only if the <restriction> alternative is also + * chosen, a complex type definition whose {content type} + * is mixed and a particle emptyable. + */ + /* + * FIXME TODO: Check for *empiable particle* is missing. + */ + if ((type->flags & + XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION) == 0) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "A complex type (simple content) cannot " + "extend an other complex type which has a " + "content type of: 'mixed' and emptiable particle", + NULL); + return (XML_SCHEMAP_SRC_CT_1); + } + /* + * NOTE: This will be fired as well, if the base type + * is *'anyType'*. + * NOTE: type->subtypes->subtypes will be the + * <restriction> item. + */ + if (type->subtypes->subtypes == NULL) { + /* Yes, this is paranoid programming. */ + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaCheckSRCCT, " + "'%s', <simpleContent> has no <restriction>", + type->name); + return (-1); + } + /* + * 2.2 If clause 2.1.2 above is satisfied, then there + * must be a <simpleType> among the [children] of + * <restriction>. + */ + if (type->subtypes->subtypes->type != + XML_SCHEMA_TYPE_SIMPLE) { + /* TODO: Change error code to ..._SRC_CT_2_2. */ + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "A <simpleType> is expected among the children " + "of <restriction>", NULL); + return (XML_SCHEMAP_SRC_CT_1); + } + OK = 1; + } else { /* if (base->contentType = XML_SCHEMA_CONTENT_MIXED)*/ + /* + * 2.1.1 a complex type definition whose {content type} is a + * simple type definition; + */ + if (base->contentType == XML_SCHEMA_CONTENT_ELEMENTS) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "A complex type (simple content) cannot " + "be derived from the complex type '%s'", + base->name); + return (XML_SCHEMAP_SRC_CT_1); + } + content = base->contentTypeDef; + if (content == NULL) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaCheckSRCCT, " + "'%s', base type has no content type", + type->name); + return (-1); + } + if (content->type != XML_SCHEMA_TYPE_SIMPLE) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_CT_1, + NULL, type, NULL, + "A complex type (simple content) cannot " + "be derived from the complex type '%s'", + base->name); + return (XML_SCHEMAP_SRC_CT_1); + } + } + } + } + } + /* + * TODO: 3 The corresponding complex type definition component must + * satisfy the conditions set out in Constraints on Complex Type + * Definition Schema Components (§3.4.6); + * + * TODO: 4 If clause 2.2.1 or clause 2.2.2 in the correspondence specification + * above for {attribute wildcard} is satisfied, the intensional + * intersection must be expressible, as defined in Attribute Wildcard + * Intersection (§3.10.6). + */ + +} +#endif + +/** + * xmlSchemaGroupDefFixup: + * @typeDecl: the schema model group definition + * @ctxt: the schema parser context + * + * Fixes model group definitions. + */ +static void +xmlSchemaGroupDefFixup(xmlSchemaTypePtr group, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) +{ + group->contentType = XML_SCHEMA_CONTENT_ELEMENTS; + if ((group->ref != NULL) && (group->subtypes == NULL)) { + xmlSchemaTypePtr groupDef; + /* + * Resolve the reference. + */ + groupDef = xmlSchemaGetGroup(ctxt->schema, group->ref, + group->refNs); + if (groupDef == NULL) { + xmlSchemaPResCompAttrErr(ctxt, + XML_SCHEMAP_SRC_RESOLVE, + NULL, group, NULL, + "ref", group->ref, group->refNs, + XML_SCHEMA_TYPE_GROUP, NULL); + return; + } + group->subtypes = groupDef; + } +} + +#if 0 /* Enable when the content type will be computed. */ +static int +xmlSchemaComputeContentType(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaTypePtr type) +{ + xmlSchemaTypePtr base, res = NULL; + + base = type->baseType; + if (base == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "the complex type '%s' has no base type", type->name); + return (-1); + } + if (IS_ANYTYPE(base) || (type->subtypes->type == + XML_SCHEMA_TYPE_COMPLEX_CONTENT)) { + xmlSchemaTypePtr start; + /* + * Effective 'mixed'. + */ + if (type->flags & XML_SCHEMAS_TYPE_MIXED) + type->contentType = XML_SCHEMA_CONTENT_MIXED; + /* + * Effective content. + */ + if (IS_ANYTYPE(base)) + start = type; + else + start = type->subtypes; + + } else { /* if XML_SCHEMA_TYPE_COMPLEX_CONTENT */ + xmlSchemaTypePtr baseContentItem; + + /* + * Complex type with simple content. + */ + if IS_COMPLEX_TYPE(base) { + if (type->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION) { + /* + * Summary: a complex type (simple content) can *restrict* + * a complex type with the following content type: + * 1. 'mixed' and an emptiable particle + * 2. simple type + */ + if (base->contentType == XML_SCHEMA_CONTENT_MIXED) { + /* + * 2 if the {content type} of the base type is mixed and a + * particle which is ·emptiable·, + * [...] + * then starting from the simple type definition + * corresponding to the <simpleType> among the [children] + * of <restriction> (**which must be present**) + * + * FIXME TODO: Handle "emptiable particle". + */ + res = type->subtypes->subtypes; + if (res == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (restricting): <simpleContent> has no " + "<restriction>", + type->name); + return (-1); + } + + res->subtypes; + if (res == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (restricting): <restriction> has no " + "mandatory <simpleType>", + type->name); + return (-1); + } + } else { + baseContentItem = base->contentTypeDef; + if (baseContentItem == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (restricting), the base type has no " + "content type", type->name); + return (-1); + } + if IS_SIMPLE_TYPE(baseContentItem) { + /* + * 1 If the base type is a complex type whose own + * {content type} is a simple type and the <restriction> + * alternative is chosen + */ + /* type->subtypes->subtypes will be the restriction item.*/ + res = type->subtypes->subtypes; + if (res == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (restricting): <simpleType> has no " + "<restriction>", type->name); + return (-1); + } + /* + * 1.1 the simple type definition corresponding to the + * <simpleType> among the [children] of <restriction>if + * there is one; + */ + res = res->subtypes; + if (res == NULL) { + /* + * 1.2 otherwise the {content type} + * of the base type . + */ + res = baseContentItem; + } + } + } + /* + * SPECIAL TODO: If *restricting* the spec wants us to + * create an *additional* simple type which restricts the + * located simple type; we won't do this yet, and look how + * far we get with it. + */ + } else { /* if XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION */ + /* + * Summary: a complex type (simple content) can *extend* + * only a complex base with a simple type as content. + */ + /* + * 3 If the type definition ·resolved· to by the ·actual + * value· of the base [attribute] is a complex type + * definition (whose own {content type} *must be* a simple + * type definition, see below) and the *<extension>* + * alternative is chosen, then the {content type} of that + * complex type definition; + */ + res = base->contentTypeDef; + if (res == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (extending), the base type has no content " + "type", type->name); + return (-1); + } + if (! IS_SIMPLE_TYPE(res)) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "CT '%s' (extending), the content type of the " + "base is not a simple type", type->name); + return (-1); + } + } + } else /* if IS_COMPLEX_TYPE(base) */ + if (type->flags & XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION) { + /* + * 4 otherwise (the type definition ·resolved· to by the + * ·actual value· of the base [attribute] is a simple type + * definition and the <extension> alternative is chosen), + * then that simple type definition. + */ + res = base; + } + type->contentTypeDef = res; + if (res == NULL) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_INTERNAL, + NULL, type, NULL, + "Internal error: xmlSchemaGetContentType, " + "'%s', the content type could not be determined", + type->name); + return (-1); + } + + } + +} #endif /** @@ -10964,19 +12080,19 @@ xmlSchemaCheckCOSCTExtends(xmlSchemaParserCtxtPtr ctxt, * Fixes the content model of the type. */ static void -xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, +xmlSchemaTypeFixup(xmlSchemaTypePtr item, xmlSchemaParserCtxtPtr ctxt, const xmlChar * name) { xmlSchemaTypePtr ctxtType; - if (typeDecl == NULL) + if (item == NULL) return; /* * Do not allow the following types to be typefixed, prior to * the corresponding simple/complex types. */ if (ctxt->ctxtType == NULL) { - switch (typeDecl->type) { + switch (item->type) { case XML_SCHEMA_TYPE_SIMPLE_CONTENT: case XML_SCHEMA_TYPE_COMPLEX_CONTENT: case XML_SCHEMA_TYPE_UNION: @@ -10988,18 +12104,19 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, } } if (name == NULL) - name = typeDecl->name; - if (typeDecl->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { - switch (typeDecl->type) { + name = item->name; + if (item->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { + switch (item->type) { case XML_SCHEMA_TYPE_SIMPLE_CONTENT:{ - if (typeDecl->subtypes != NULL) { - if (typeDecl->subtypes->contentType == + if (item->subtypes != NULL) { + if (item->subtypes->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); } - typeDecl->contentType = - typeDecl->subtypes->contentType; + item->contentType = + XML_SCHEMA_CONTENT_SIMPLE; + /* item->subtypes->contentType; */ } break; } @@ -11008,18 +12125,18 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, ctxt->ctxtType->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION; - if (typeDecl->baseType != NULL) - base = typeDecl->baseType; - else if (typeDecl->base != NULL) { + if (item->baseType != NULL) + base = item->baseType; + else if (item->base != NULL) { base = - xmlSchemaGetType(ctxt->schema, typeDecl->base, - typeDecl->baseNs); + xmlSchemaGetType(ctxt->schema, item->base, + item->baseNs); if (base == NULL) { xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE, NULL, NULL, - (xmlNodePtr) xmlSchemaGetPropNode(typeDecl->node, "base"), - "base", typeDecl->base, typeDecl->baseNs, + (xmlNodePtr) xmlSchemaGetPropNode(item->node, "base"), + "base", item->base, item->baseNs, XML_SCHEMA_TYPE_BASIC, "type definition"); } else if (base->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { @@ -11034,24 +12151,24 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, /* * Content type. */ - if (typeDecl->subtypes == NULL) + if (item->subtypes == NULL) /* 1.1.1 */ - typeDecl->contentType = XML_SCHEMA_CONTENT_EMPTY; - else if ((typeDecl->subtypes->subtypes == NULL) && - ((typeDecl->subtypes->type == + item->contentType = XML_SCHEMA_CONTENT_EMPTY; + else if ((item->subtypes->subtypes == NULL) && + ((item->subtypes->type == XML_SCHEMA_TYPE_ALL) - || (typeDecl->subtypes->type == + || (item->subtypes->type == XML_SCHEMA_TYPE_SEQUENCE))) /* 1.1.2 */ - typeDecl->contentType = XML_SCHEMA_CONTENT_EMPTY; - else if ((typeDecl->subtypes->type == + item->contentType = XML_SCHEMA_CONTENT_EMPTY; + else if ((item->subtypes->type == XML_SCHEMA_TYPE_CHOICE) - && (typeDecl->subtypes->subtypes == NULL)) + && (item->subtypes->subtypes == NULL)) /* 1.1.3 */ - typeDecl->contentType = XML_SCHEMA_CONTENT_EMPTY; + item->contentType = XML_SCHEMA_CONTENT_EMPTY; else { /* 1.2 and 2.X are applied at the other layer */ - typeDecl->contentType = + item->contentType = XML_SCHEMA_CONTENT_ELEMENTS; } } else { @@ -11071,29 +12188,29 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, */ ctxt->ctxtType->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION; - if (typeDecl->recurse) { + if (item->recurse) { /* TODO: The word "recursive" should be changed to "circular" here. */ xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_UNKNOWN_BASE_TYPE, - NULL, typeDecl, typeDecl->node, + NULL, item, item->node, "This item is circular", NULL); return; } - if (typeDecl->base != NULL) { + if (item->base != NULL) { base = - xmlSchemaGetType(ctxt->schema, typeDecl->base, - typeDecl->baseNs); + xmlSchemaGetType(ctxt->schema, item->base, + item->baseNs); if (base == NULL) { xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE, - NULL, typeDecl, typeDecl->node, - "base", typeDecl->base, typeDecl->baseNs, + NULL, item, item->node, + "base", item->base, item->baseNs, XML_SCHEMA_TYPE_BASIC, "type definition"); } else if (base->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { - typeDecl->recurse = 1; + item->recurse = 1; xmlSchemaTypeFixup(base, ctxt, NULL); - typeDecl->recurse = 0; + item->recurse = 0; } /* * The type definition ·resolved· to by the ·actual @@ -11105,41 +12222,41 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, * the content model by xmlSchemaBuildAContentModel. * Try to get rid of it. */ - typeDecl->baseType = base; + item->baseType = base; } - if ((typeDecl->subtypes != NULL) && - (typeDecl->subtypes->contentType == XML_SCHEMA_CONTENT_UNKNOWN)) - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, NULL); + if ((item->subtypes != NULL) && + (item->subtypes->contentType == XML_SCHEMA_CONTENT_UNKNOWN)) + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); explicitContentType = XML_SCHEMA_CONTENT_ELEMENTS; - if (typeDecl->subtypes == NULL) + if (item->subtypes == NULL) /* 1.1.1 */ explicitContentType = XML_SCHEMA_CONTENT_EMPTY; - else if ((typeDecl->subtypes->subtypes == NULL) && - ((typeDecl->subtypes->type == + else if ((item->subtypes->subtypes == NULL) && + ((item->subtypes->type == XML_SCHEMA_TYPE_ALL) - || (typeDecl->subtypes->type == + || (item->subtypes->type == XML_SCHEMA_TYPE_SEQUENCE))) /* 1.1.2 */ explicitContentType = XML_SCHEMA_CONTENT_EMPTY; - else if ((typeDecl->subtypes->type == + else if ((item->subtypes->type == XML_SCHEMA_TYPE_CHOICE) - && (typeDecl->subtypes->subtypes == NULL)) + && (item->subtypes->subtypes == NULL)) /* 1.1.3 */ explicitContentType = XML_SCHEMA_CONTENT_EMPTY; if (base != NULL) { /* It will be reported later, if the base is missing. */ if (explicitContentType == XML_SCHEMA_CONTENT_EMPTY) { /* 2.1 */ - typeDecl->contentType = base->contentType; + item->contentType = base->contentType; } else if (base->contentType == XML_SCHEMA_CONTENT_EMPTY) { /* 2.2 imbitable ! */ - typeDecl->contentType = + item->contentType = XML_SCHEMA_CONTENT_ELEMENTS; } else { /* 2.3 imbitable pareil ! */ - typeDecl->contentType = + item->contentType = XML_SCHEMA_CONTENT_ELEMENTS; } } @@ -11147,11 +12264,17 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, } case XML_SCHEMA_TYPE_COMPLEX:{ ctxtType = ctxt->ctxtType; - ctxt->ctxtType = typeDecl; - if ((typeDecl->subtypes == NULL) || - ((typeDecl->subtypes->type != + ctxt->ctxtType = item; + /* + * Start with an empty content-type type. + */ + if (item->subtypes == NULL) + item->contentType = XML_SCHEMA_CONTENT_EMPTY; + + if ((item->subtypes == NULL) || + ((item->subtypes->type != XML_SCHEMA_TYPE_SIMPLE_CONTENT) && - (typeDecl->subtypes->type != + (item->subtypes->type != XML_SCHEMA_TYPE_COMPLEX_CONTENT))) { /* * This case is understood as shorthand for complex @@ -11159,60 +12282,64 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, * the details of the mappings should be modified as * necessary. */ - typeDecl->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE); - typeDecl->flags |= + item->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE); + item->flags |= XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION; + /* + * Assume that we inherit the content-type type + * from 'anyType', which is 'mixed' and a particle + * emptiable. + */ + item->contentType = item->baseType->contentType; } - if (typeDecl->subtypes == NULL) { - typeDecl->contentType = XML_SCHEMA_CONTENT_EMPTY; - if (typeDecl->flags & XML_SCHEMAS_TYPE_MIXED) - typeDecl->contentType = - XML_SCHEMA_CONTENT_MIXED; - } else { - if ((typeDecl->subtypes != NULL) && - (typeDecl->subtypes->contentType == - XML_SCHEMA_CONTENT_UNKNOWN)) { - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, - NULL); - } - if (typeDecl->flags & XML_SCHEMAS_TYPE_MIXED) { - typeDecl->contentType = - XML_SCHEMA_CONTENT_MIXED; - } else { - if (typeDecl->subtypes != NULL) { - typeDecl->contentType = - typeDecl->subtypes->contentType; - } - } - } - xmlSchemaBuildAttributeValidation(ctxt, typeDecl); + /* + * Fixup the sub components. + */ + if ((item->subtypes != NULL) && + (item->subtypes->contentType == + XML_SCHEMA_CONTENT_UNKNOWN)) { + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); + } + if (item->flags & XML_SCHEMAS_TYPE_MIXED) { + item->contentType = XML_SCHEMA_CONTENT_MIXED; + } else if (item->subtypes != NULL) { + /* + * Use the content-type type of the model groups + * defined, if 'mixed' is not set. If 'mixed' is set + * it will expand the content-type by allowing character + * content to appear. + */ + item->contentType = + item->subtypes->contentType; + } + xmlSchemaBuildAttributeValidation(ctxt, item); ctxt->ctxtType = ctxtType; break; } case XML_SCHEMA_TYPE_COMPLEX_CONTENT:{ - if (typeDecl->subtypes == NULL) { - typeDecl->contentType = XML_SCHEMA_CONTENT_EMPTY; - if (typeDecl->flags & XML_SCHEMAS_TYPE_MIXED) - typeDecl->contentType = + if (item->subtypes == NULL) { + item->contentType = XML_SCHEMA_CONTENT_EMPTY; + if (item->flags & XML_SCHEMAS_TYPE_MIXED) + item->contentType = XML_SCHEMA_CONTENT_MIXED; } else { - if (typeDecl->flags & XML_SCHEMAS_TYPE_MIXED) { - typeDecl->contentType = + if (item->flags & XML_SCHEMAS_TYPE_MIXED) { + item->contentType = XML_SCHEMA_CONTENT_MIXED; } else { - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); - if (typeDecl->subtypes != NULL) - typeDecl->contentType = - typeDecl->subtypes->contentType; + if (item->subtypes != NULL) + item->contentType = + item->subtypes->contentType; } /* * Removed due to implementation of the build of attribute uses. */ /* - if (typeDecl->attributes == NULL) - typeDecl->attributes = - typeDecl->subtypes->attributes; + if (item->attributes == NULL) + item->attributes = + item->subtypes->attributes; */ } break; @@ -11223,35 +12350,35 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, * */ ctxtType = ctxt->ctxtType; - typeDecl->contentType = XML_SCHEMA_CONTENT_SIMPLE; - if (typeDecl->subtypes->contentType == + item->contentType = XML_SCHEMA_CONTENT_SIMPLE; + if (item->subtypes->contentType == XML_SCHEMA_CONTENT_UNKNOWN) { - ctxt->ctxtType = typeDecl; - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, NULL); + ctxt->ctxtType = item; + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); } /* Fixup base type */ - if ((typeDecl->baseType != NULL) && - (typeDecl->baseType->contentType == + if ((item->baseType != NULL) && + (item->baseType->contentType == XML_SCHEMA_CONTENT_UNKNOWN)) { /* OPTIMIZE: Actually this one will never by hit, since * the base type is already type-fixed in <restriction>. */ - ctxt->ctxtType = typeDecl; - xmlSchemaTypeFixup(typeDecl->baseType, ctxt, NULL); + ctxt->ctxtType = item; + xmlSchemaTypeFixup(item->baseType, ctxt, NULL); } /* Base type: * 2 If the <list> or <union> alternative is chosen, * then the ·simple ur-type definition·. */ - if (typeDecl->subtypes->type == + if (item->subtypes->type == XML_SCHEMA_TYPE_LIST) { - typeDecl->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); - typeDecl->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST; - } else if (typeDecl->subtypes->type == + item->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); + item->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST; + } else if (item->subtypes->type == XML_SCHEMA_TYPE_UNION) { - typeDecl->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); - typeDecl->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION; - } else if (typeDecl->subtypes->type == + item->baseType = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); + item->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION; + } else if (item->subtypes->type == XML_SCHEMA_TYPE_RESTRICTION) { xmlSchemaFacetLinkPtr facet, cur, last = NULL; @@ -11260,16 +12387,16 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, * If the <restriction> alternative is chosen, then the * {variety} of the {base type definition}. */ - if (typeDecl->baseType != NULL) { - if (typeDecl->baseType->flags & + if (item->baseType != NULL) { + if (item->baseType->flags & XML_SCHEMAS_TYPE_VARIETY_ATOMIC) - typeDecl->flags |= XML_SCHEMAS_TYPE_VARIETY_ATOMIC; - else if (typeDecl->baseType->flags & + item->flags |= XML_SCHEMAS_TYPE_VARIETY_ATOMIC; + else if (item->baseType->flags & XML_SCHEMAS_TYPE_VARIETY_LIST) - typeDecl->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST; - else if (typeDecl->baseType->flags & + item->flags |= XML_SCHEMAS_TYPE_VARIETY_LIST; + else if (item->baseType->flags & XML_SCHEMAS_TYPE_VARIETY_UNION) - typeDecl->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION; + item->flags |= XML_SCHEMAS_TYPE_VARIETY_UNION; /* * Schema Component Constraint: Simple Type Restriction * (Facets) @@ -11284,12 +12411,12 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, * facets, for which multiple occurrences with distinct values * are allowed. */ - if (typeDecl->baseType->facetSet != NULL) { - last = typeDecl->facetSet; + if (item->baseType->facetSet != NULL) { + last = item->facetSet; if (last != NULL) while (last->next != NULL) last = last->next; - cur = typeDecl->baseType->facetSet; + cur = item->baseType->facetSet; for (; cur != NULL; cur = cur->next) { /* * Base patterns won't be add here: @@ -11302,12 +12429,12 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, XML_SCHEMA_FACET_PATTERN) continue; facet = NULL; - if ((typeDecl->facetSet != NULL) && + if ((item->facetSet != NULL) && (cur->facet->type != XML_SCHEMA_FACET_PATTERN) && (cur->facet->type != XML_SCHEMA_FACET_ENUMERATION)) { - facet = typeDecl->facetSet; + facet = item->facetSet; do { if (cur->facet->type == facet->facet->type) @@ -11326,7 +12453,7 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, facet->facet = cur->facet; facet->next = NULL; if (last == NULL) - typeDecl->facetSet = facet; + item->facetSet = facet; else last->next = facet; last = facet; @@ -11338,22 +12465,26 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, /* * Check constraints. */ - xmlSchemaCheckSRCSimpleType(ctxt, typeDecl); + xmlSchemaCheckSRCSimpleType(ctxt, item); ctxt->ctxtType = ctxtType; break; - case XML_SCHEMA_TYPE_SEQUENCE: - case XML_SCHEMA_TYPE_GROUP: + case XML_SCHEMA_TYPE_SEQUENCE: case XML_SCHEMA_TYPE_ALL: case XML_SCHEMA_TYPE_CHOICE: - typeDecl->contentType = XML_SCHEMA_CONTENT_ELEMENTS; + item->contentType = XML_SCHEMA_CONTENT_ELEMENTS; break; + case XML_SCHEMA_TYPE_GROUP: + /* + * TODO: Handling was moved to xmlSchemaGroupDefFixup. + */ + break; case XML_SCHEMA_TYPE_LIST: - xmlSchemaParseListRefFixup(typeDecl, ctxt); - typeDecl->contentType = XML_SCHEMA_CONTENT_SIMPLE; + xmlSchemaParseListRefFixup(item, ctxt); + item->contentType = XML_SCHEMA_CONTENT_SIMPLE; break; case XML_SCHEMA_TYPE_UNION: - xmlSchemaParseUnionRefCheck(typeDecl, ctxt); - typeDecl->contentType = XML_SCHEMA_CONTENT_SIMPLE; + xmlSchemaParseUnionRefCheck(item, ctxt); + item->contentType = XML_SCHEMA_CONTENT_SIMPLE; break; case XML_SCHEMA_TYPE_BASIC: case XML_SCHEMA_TYPE_ANY: @@ -11376,22 +12507,22 @@ xmlSchemaTypeFixup(xmlSchemaTypePtr typeDecl, case XML_SCHEMA_FACET_LENGTH: case XML_SCHEMA_FACET_MAXLENGTH: case XML_SCHEMA_FACET_MINLENGTH: - typeDecl->contentType = XML_SCHEMA_CONTENT_SIMPLE; - if (typeDecl->subtypes != NULL) - xmlSchemaTypeFixup(typeDecl->subtypes, ctxt, NULL); + item->contentType = XML_SCHEMA_CONTENT_SIMPLE; + if (item->subtypes != NULL) + xmlSchemaTypeFixup(item->subtypes, ctxt, NULL); break; } } #ifdef DEBUG_TYPE - if (typeDecl->node != NULL) { + if (item->node != NULL) { xmlGenericError(xmlGenericErrorContext, "Type of %s : %s:%d :", name, - typeDecl->node->doc->URL, - xmlGetLineNo(typeDecl->node)); + item->node->doc->URL, + xmlGetLineNo(item->node)); } else { xmlGenericError(xmlGenericErrorContext, "Type of %s :", name); } - switch (typeDecl->contentType) { + switch (item->contentType) { case XML_SCHEMA_CONTENT_SIMPLE: xmlGenericError(xmlGenericErrorContext, "simple\n"); break; @@ -11441,7 +12572,12 @@ xmlSchemaCheckFacet(xmlSchemaFacetPtr facet, xmlSchemaParserCtxtPtr ctxt, const xmlChar * name) { xmlSchemaTypePtr nonNegativeIntegerType = NULL; - int ret = 0; + int ret = 0, reuseValCtxt = 0; + + /* + * TODO: will the parser context be given if used from + * the relaxNG module? + */ if (nonNegativeIntegerType == NULL) { nonNegativeIntegerType = @@ -11490,19 +12626,40 @@ xmlSchemaCheckFacet(xmlSchemaFacetPtr facet, } else base = typeDecl; /* - * TODO: Try to avoid creating a new context. + * This avoids perseverative creation of the + * validation context if a parser context is + * used. */ - vctxt = xmlSchemaNewValidCtxt(NULL); - if (vctxt == NULL) { - xmlSchemaPErr(ctxt, typeDecl->node, - XML_SCHEMAP_INTERNAL, - "Internal error: xmlSchemaCheckFacet, " - "creating a new validation context.\n", - NULL, NULL); - return (-1); + if (ctxt != NULL) { + reuseValCtxt = 1; + if (ctxt->vctxt == NULL) { + if (xmlSchemaCreateVCtxtOnPCtxt(ctxt) == -1) + return (-1); + } + vctxt = ctxt->vctxt; + } else { + vctxt = xmlSchemaNewValidCtxt(NULL); + if (vctxt == NULL) { + xmlSchemaPErr(ctxt, typeDecl->node, + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckFacet, " + "creating a new validation context.\n", + NULL, NULL); + return (-1); + } } - vctxt->type = base; - ret = xmlSchemaValidateSimpleTypeValue(vctxt, facet->value, 0, 1, 1); + + vctxt->node = facet->node; + vctxt->cur = NULL; + /* + * NOTE: This call does not check the content nodes, + * since they are not available: + * facet->node is just the node holding the facet + * definition, *not* the attribute holding the *value* + * of the facet. + */ + ret = xmlSchemaValidateSimpleTypeValue(vctxt, base, + facet->value, 0, 1, 1, 0); facet->val = vctxt->value; vctxt->value = NULL; if (ret > 0) { @@ -11529,8 +12686,9 @@ xmlSchemaCheckFacet(xmlSchemaFacetPtr facet, BAD_CAST xmlSchemaFacetTypeToString(facet->type), base->name, NULL, NULL); ret = -1; - } - xmlSchemaFreeValidCtxt(vctxt); + } + if (reuseValCtxt == 0) + xmlSchemaFreeValidCtxt(vctxt); break; } case XML_SCHEMA_FACET_PATTERN: @@ -11623,6 +12781,234 @@ xmlSchemaCheckDefaults(xmlSchemaTypePtr typeDecl, } /** + * xmlSchemaGetCircModelGrDefRef: + * @ctxtGr: the searched model group + * @list: the list of model groups to be processed + * + * This one is intended to be used by + * xmlSchemaCheckGroupDefCircular only. + * + * Returns the circular model group definition reference, otherwise NULL. + */ +static xmlSchemaTypePtr +xmlSchemaGetCircModelGrDefRef(xmlSchemaTypePtr ctxtGrDef, + xmlSchemaTypePtr gr) +{ + xmlSchemaTypePtr circ = NULL; + int marked; + /* + * We will search for an model group reference which + * references the context model group definition. + */ + while (gr != NULL) { + if (((gr->type == XML_SCHEMA_TYPE_GROUP) || + (gr->type == XML_SCHEMA_TYPE_ALL) || + (gr->type == XML_SCHEMA_TYPE_SEQUENCE) || + (gr->type == XML_SCHEMA_TYPE_CHOICE)) && + (gr->subtypes != NULL)) { + marked = 0; + if ((gr->type == XML_SCHEMA_TYPE_GROUP) && + (gr->ref != NULL)) { + if (gr->subtypes == ctxtGrDef) + return (gr); + else if (gr->subtypes->flags & + XML_SCHEMAS_TYPE_MARKED) { + gr = gr->next; + continue; + } else { + /* + * Mark to avoid infinite recursion on + * circular references not yet examined. + */ + gr->subtypes->flags |= XML_SCHEMAS_TYPE_MARKED; + marked = 1; + } + if (gr->subtypes->subtypes != NULL) + circ = xmlSchemaGetCircModelGrDefRef(ctxtGrDef, + gr->subtypes->subtypes); + /* + * Unmark the visited model group definition. + */ + if (marked) + gr->subtypes->flags ^= XML_SCHEMAS_TYPE_MARKED; + if (circ != NULL) + return (circ); + } else { + circ = xmlSchemaGetCircModelGrDefRef(ctxtGrDef, + (xmlSchemaTypePtr) gr->subtypes); + if (circ != NULL) + return (circ); + } + + } + gr = gr->next; + } + return (NULL); +} + +/** + * xmlSchemaCheckGroupDefCircular: + * attrGr: the model group definition + * @ctxt: the parser context + * @name: the name + * + * Checks for circular references to model group definitions. + */ +static void +xmlSchemaCheckGroupDefCircular(xmlSchemaTypePtr modelGrDef, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) +{ + /* + * Schema Component Constraint: Model Group Correct + * 2 Circular groups are disallowed. That is, within the {particles} + * of a group there must not be at any depth a particle whose {term} + * is the group itself. + */ + /* + * NOTE: "gr->subtypes" holds the referenced group. + */ + if ((modelGrDef->type != XML_SCHEMA_TYPE_GROUP) || + ((modelGrDef->flags & XML_SCHEMAS_TYPE_GLOBAL) == 0) || + (modelGrDef->subtypes == NULL)) + return; + else { + xmlSchemaTypePtr circ; + + circ = xmlSchemaGetCircModelGrDefRef(modelGrDef, modelGrDef->subtypes); + if (circ != NULL) { + /* + * TODO: Report the referenced attr group as QName. + */ + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_MG_PROPS_CORRECT_2, + NULL, NULL, circ->node, + "Circular reference to the model group definition '%s' " + "defined", modelGrDef->name); + /* + * NOTE: We will cut the reference to avoid further + * confusion of the processor. + * TODO: SPEC: Does the spec define how to process here? + */ + circ->subtypes = NULL; + } + } +} + + +/** + * xmlSchemaGetCircAttrGrRef: + * @ctxtGr: the searched attribute group + * @attr: the current attribute list to be processed + * + * This one is intended to be used by + * xmlSchemaCheckSRCAttributeGroupCircular only. + * + * Returns the circular attribute grou reference, otherwise NULL. + */ +static xmlSchemaAttributeGroupPtr +xmlSchemaGetCircAttrGrRef(xmlSchemaAttributeGroupPtr ctxtGr, + xmlSchemaAttributePtr attr) +{ + xmlSchemaAttributeGroupPtr circ = NULL, gr; + int marked; + /* + * We will search for an attribute group reference which + * references the context attribute group. + */ + while (attr != NULL) { + marked = 0; + if (attr->type == XML_SCHEMA_TYPE_ATTRIBUTEGROUP) { + gr = (xmlSchemaAttributeGroupPtr) attr; + if (gr->refItem != NULL) { + if (gr->refItem == ctxtGr) + return (gr); + else if (gr->refItem->flags & + XML_SCHEMAS_ATTRGROUP_MARKED) { + attr = attr->next; + continue; + } else { + /* + * Mark as visited to avoid infinite recursion on + * circular references not yet examined. + */ + gr->refItem->flags |= XML_SCHEMAS_ATTRGROUP_MARKED; + marked = 1; + } + } + if (gr->attributes != NULL) + circ = xmlSchemaGetCircAttrGrRef(ctxtGr, gr->attributes); + /* + * Unmark the visited group's attributes. + */ + if (marked) + gr->refItem->flags ^= XML_SCHEMAS_ATTRGROUP_MARKED; + if (circ != NULL) + return (circ); + } + attr = attr->next; + } + return (NULL); +} + +/** + * xmlSchemaCheckSRCAttributeGroupCircular: + * attrGr: the attribute group definition + * @ctxt: the parser context + * @name: the name + * + * Checks for circular references of attribute groups. + */ +static void +xmlSchemaCheckAttributeGroupCircular(xmlSchemaAttributeGroupPtr attrGr, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) +{ + /* + * Schema Representation Constraint: + * Attribute Group Definition Representation OK + * 3 Circular group reference is disallowed outside <redefine>. + * That is, unless this element information item's parent is + * <redefine>, then among the [children], if any, there must + * not be an <attributeGroup> with ref [attribute] which resolves + * to the component corresponding to this <attributeGroup>. Indirect + * circularity is also ruled out. That is, when QName resolution + * (Schema Document) (§3.15.3) is applied to a ·QName· arising from + * any <attributeGroup>s with a ref [attribute] among the [children], + * it must not be the case that a ·QName· is encountered at any depth + * which resolves to the component corresponding to this <attributeGroup>. + */ + /* + * Only global components can be referenced. + */ + if (((attrGr->flags & XML_SCHEMAS_ATTRGROUP_GLOBAL) == 0) || + (attrGr->attributes == NULL)) + return; + else { + xmlSchemaAttributeGroupPtr circ; + + circ = xmlSchemaGetCircAttrGrRef(attrGr, attrGr->attributes); + if (circ != NULL) { + /* + * TODO: Report the referenced attr group as QName. + */ + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_SRC_ATTRIBUTE_GROUP_3, + NULL, NULL, circ->node, + "Circular reference to the attribute group '%s' " + "defined", attrGr->name); + /* + * NOTE: We will cut the reference to avoid further + * confusion of the processor. + * BADSPEC: The spec should define how to process in this case. + */ + circ->attributes = NULL; + circ->refItem = NULL; + } + } +} + +/** * xmlSchemaAttrGrpFixup: * @attrgrpDecl: the schema attribute definition * @ctxt: the schema parser context @@ -11651,6 +13037,10 @@ xmlSchemaAttrGrpFixup(xmlSchemaAttributeGroupPtr attrgrp, XML_SCHEMA_TYPE_ATTRIBUTEGROUP, NULL); return; } + attrgrp->refItem = ref; + /* + * Check for self reference! + */ xmlSchemaAttrGrpFixup(ref, ctxt, NULL); attrgrp->attributes = ref->attributes; attrgrp->attributeWildcard = ref->attributeWildcard; @@ -11658,19 +13048,235 @@ xmlSchemaAttrGrpFixup(xmlSchemaAttributeGroupPtr attrgrp, } /** - * xmlSchemaAttrFixup: - * @attrDecl: the schema attribute definition - * @ctxt: the schema parser context - * @name: the attribute name + * xmlSchemaAttrCheckValConstr: + * @item: an schema attribute declaration/use + * @ctxt: a schema parser context + * @name: the name of the attribute + * + * Validates the value constraints of an attribute declaration/use. * * Fixes finish doing the computations on the attributes definitions */ static void -xmlSchemaAttrFixup(xmlSchemaAttributePtr attrDecl, - xmlSchemaParserCtxtPtr ctxt, const xmlChar * name) +xmlSchemaCheckAttrValConstr(xmlSchemaAttributePtr item, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) +{ + + /* + * a-props-correct + * Schema Component Constraint: Attribute Declaration Properties Correct + * + * 2 if there is a {value constraint}, the canonical lexical + * representation of its value must be ·valid· with respect + * to the {type definition} as defined in String Valid (§3.14.4). + */ + + if (item->defValue != NULL) { + int ret; + xmlNodePtr node; + xmlSchemaTypePtr type; + + if (item->subtypes == NULL) { + xmlSchemaPErr(ctxt, item->node, + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckAttrValConstr, " + "type is missing... skipping validation of " + "value constraint", NULL, NULL); + return; + } + + /* + * TODO: Try to avoid creating a new context. + * TODO: This all is not very performant. + */ + type = item->subtypes; + /* + * Ensure there's validation context. + */ + if (ctxt->vctxt == NULL) { + if (xmlSchemaCreateVCtxtOnPCtxt(ctxt) == -1) { + xmlSchemaPErr(ctxt, item->node, + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckAttrValConstr, " + "creating a new validation context.\n", + NULL, NULL); + return; + } + } + + if (item->flags & XML_SCHEMAS_ATTR_FIXED) + node = (xmlNodePtr) xmlHasProp(item->node, BAD_CAST "fixed"); + else + node = (xmlNodePtr) xmlHasProp(item->node, BAD_CAST "default"); + ctxt->vctxt->node = node; + ctxt->vctxt->cur = NULL; + /* + * NOTE: This call does not check the content nodes, + * since they are not available: + * facet->node is just the node holding the facet + * definition, *not* the attribute holding the *value* + * of the facet. + */ + ret = xmlSchemaValidateSimpleTypeValue(ctxt->vctxt, type, + item->defValue, 0, 1, 1, 0); + if (ret == 0) { + /* + * Store the computed value. + */ + item->defVal = ctxt->vctxt->value; + ctxt->vctxt->value = NULL; + } else if (ret > 0) { + if (ctxt != NULL) { + xmlSchemaPSimpleTypeErr(ctxt, + XML_SCHEMAP_A_PROPS_CORRECT_2, + NULL, NULL, node, + type, NULL, item->defValue, + NULL, NULL, NULL); + } + } else if (ret < 0) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, + NULL, NULL, node, + "Internal error: xmlSchemaAttrCheckValConstr, " + "failed to validate the value constraint of the " + "attribute decl/use against the type '%s'", + type->name); + } + } +} + +#if 0 /* Not used yet. */ +static int +xmlSchemaCheckElemPropsCorrect(xmlSchemaParserCtxtPtr ctxt, + xmlSchemaElementPtr edecl) +{ + /* + * TODO: 1 The values of the properties of an element declaration must be as + * described in the property tableau in The Element Declaration Schema + * Component (§3.3.1), modulo the impact of Missing Sub-components (§5.3). + */ + /* + * 2 If there is a {value constraint}, the canonical lexical + * representation of its value must be ·valid· with respect to the {type + * definition} as defined in Element Default Valid (Immediate) (§3.3.6). + * + * NOTE: This is done in xmlSchemaCheckElemValConstr. + */ + /* + * 3 If there is a non-·absent· {substitution group affiliation}, + * then {scope} must be global. + * + * NOTE: This is done in xmlSchemaParseElement. + * TODO: Move it to this layer here. + */ + /* + * TODO: 4 If there is a {substitution group affiliation}, the {type definition} + * of the element declaration must be validly derived from the {type + * definition} of the {substitution group affiliation}, given the value + * of the {substitution group exclusions} of the {substitution group + * affiliation}, as defined in Type Derivation OK (Complex) (§3.4.6) + * (if the {type definition} is complex) or as defined in + * Type Derivation OK (Simple) (§3.14.6) (if the {type definition} is + * simple). + */ + /* + * TODO: 5 If the {type definition} or {type definition}'s {content type} + * is or is derived from ID then there must not be a {value constraint}. + * Note: The use of ID as a type definition for elements goes beyond + * XML 1.0, and should be avoided if backwards compatibility is desired + */ + /* + * TODO: 6 Circular substitution groups are disallowed. That is, it must not + * be possible to return to an element declaration by repeatedly following + * the {substitution group affiliation} property. + */ +} +#endif + +/** + * xmlSchemaCheckElemValConstr: + * @item: an schema element declaration/particle + * @ctxt: a schema parser context + * @name: the name of the attribute + * + * Validates the value constraints of an element declaration. + * + * Fixes finish doing the computations on the element declarations. + */ +static void +xmlSchemaCheckElemValConstr(xmlSchemaElementPtr decl, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) +{ + if (decl->value != NULL) { + int ret; + xmlNodePtr node = NULL; + xmlSchemaTypePtr type; + + /* + * 2 If there is a {value constraint}, the canonical lexical + * representation of its value must be ·valid· with respect to the {type + * definition} as defined in Element Default Valid (Immediate) (§3.3.6). + */ + if (decl->subtypes == NULL) { + xmlSchemaPErr(ctxt, decl->node, + XML_SCHEMAP_INTERNAL, + "Internal error: xmlSchemaCheckElemValConstr, " + "type is missing... skipping validation of " + "the value constraint", NULL, NULL); + return; + } + /* + * Ensure there's a validation context. + */ + if (xmlSchemaCreateVCtxtOnPCtxt(ctxt) == -1) + return; + + type = decl->subtypes; + + if (decl->node != NULL) { + if (decl->flags & XML_SCHEMAS_ELEM_FIXED) + node = (xmlNodePtr) xmlHasProp(decl->node, BAD_CAST "fixed"); + else + node = (xmlNodePtr) xmlHasProp(decl->node, BAD_CAST "default"); + } + ctxt->vctxt->node = node; + ctxt->vctxt->cur = NULL; + ret = xmlSchemaCheckCOSValidDefault(ctxt, ctxt->vctxt, type, decl->value, + node); + if (ret == 0) { + /* + * Consume the computed value. + */ + decl->defVal = ctxt->vctxt->value; + ctxt->vctxt->value = NULL; + } else if (ret < 0) { + xmlSchemaPCustomErr(ctxt, XML_SCHEMAP_INTERNAL, + NULL, NULL, node, + "Internal error: xmlSchemaElemCheckValConstr, " + "failed to validate the value constraint of the " + "element declaration '%s'", + decl->name); + } + } +} + +/** + * xmlSchemaAttrFixup: + * @item: an schema attribute declaration/use. + * @ctxt: a schema parser context + * @name: the name of the attribute + * + * Fixes finish doing the computations on attribute declarations/uses. + */ +static void +xmlSchemaAttrFixup(xmlSchemaAttributePtr item, + xmlSchemaParserCtxtPtr ctxt, + const xmlChar * name ATTRIBUTE_UNUSED) { /* * TODO: If including this is done twice (!) for every attribute. + * -> Hmm, check if this is still done. */ /* * The simple type definition corresponding to the <simpleType> element @@ -11678,48 +13284,78 @@ xmlSchemaAttrFixup(xmlSchemaAttributePtr attrDecl, * type definition ·resolved· to by the ·actual value· of the type * [attribute], if present, otherwise the ·simple ur-type definition·. */ - if (attrDecl->flags & XML_SCHEMAS_ATTR_INTERNAL_RESOLVED) + if (item->flags & XML_SCHEMAS_ATTR_INTERNAL_RESOLVED) return; - attrDecl->flags |= XML_SCHEMAS_ATTR_INTERNAL_RESOLVED; - if (name == NULL) - name = attrDecl->name; - if (attrDecl->subtypes != NULL) + item->flags |= XML_SCHEMAS_ATTR_INTERNAL_RESOLVED; + if (item->subtypes != NULL) return; - if (attrDecl->typeName != NULL) { + if (item->typeName != NULL) { xmlSchemaTypePtr type; - type = xmlSchemaGetType(ctxt->schema, attrDecl->typeName, - attrDecl->typeNs); - if (type == NULL) { + type = xmlSchemaGetType(ctxt->schema, item->typeName, + item->typeNs); + if ((type == NULL) || (! IS_SIMPLE_TYPE(type))) { xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE, - NULL, (xmlSchemaTypePtr) attrDecl, attrDecl->node, - "type", attrDecl->typeName, attrDecl->typeNs, - XML_SCHEMA_TYPE_BASIC, "type definition"); - } - attrDecl->subtypes = type; - } else if (attrDecl->ref != NULL) { - xmlSchemaAttributePtr ref; + NULL, (xmlSchemaTypePtr) item, item->node, + "type", item->typeName, item->typeNs, + XML_SCHEMA_TYPE_SIMPLE, NULL); + } else + item->subtypes = type; + + } else if (item->ref != NULL) { + xmlSchemaAttributePtr decl; /* + * We have an attribute use here; assign the referenced + * attribute declaration. + */ + /* * TODO: Evaluate, what errors could occur if the declaration is not * found. It might be possible that the "typefixup" might crash if * no ref declaration was found. */ - ref = xmlSchemaGetAttribute(ctxt->schema, attrDecl->ref, attrDecl->refNs); - if (ref == NULL) { + decl = xmlSchemaGetAttribute(ctxt->schema, item->ref, item->refNs); + if (decl == NULL) { xmlSchemaPResCompAttrErr(ctxt, XML_SCHEMAP_SRC_RESOLVE, - NULL, (xmlSchemaTypePtr) attrDecl, attrDecl->node, - "ref", attrDecl->ref, attrDecl->refNs, + NULL, (xmlSchemaTypePtr) item, item->node, + "ref", item->ref, item->refNs, XML_SCHEMA_TYPE_ATTRIBUTE, NULL); return; } - xmlSchemaAttrFixup(ref, ctxt, NULL); - attrDecl->subtypes = ref->subtypes; + item->refDecl = decl; + xmlSchemaAttrFixup(decl, ctxt, NULL); + + item->subtypes = decl->subtypes; + /* + * Attribute Use Correct + * au-props-correct.2: If the {attribute declaration} has a fixed + * {value constraint}, then if the attribute use itself has a + * {value constraint}, it must also be fixed and its value must match + * that of the {attribute declaration}'s {value constraint}. + */ + if ((decl->flags & XML_SCHEMAS_ATTR_FIXED) && + (item->defValue != NULL)) { + if (((item->flags & XML_SCHEMAS_ATTR_FIXED) == 0) || + (!xmlStrEqual(item->defValue, decl->defValue))) { + xmlSchemaPCustomErr(ctxt, + XML_SCHEMAP_AU_PROPS_CORRECT_2, + NULL, NULL, item->node, + "The value constraint must be fixed " + "and match the referenced attribute " + "declarations's value constraint '%s'", + decl->defValue); + } + /* + * FUTURE: One should change the values of the attr. use + * if ever validation should be attempted even if the + * schema itself was not fully valid. + */ + } } else { - attrDecl->subtypes = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); - } + item->subtypes = xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYSIMPLETYPE); + } } /** @@ -11739,15 +13375,18 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt) xmlSchemaPtr ret = NULL; xmlDocPtr doc; xmlNodePtr root; - int nberrors; int preserve = 0; + /* + * This one is used if the schema to be parsed was specified via + * the API; i.e. not automatically by the validated instance document. + */ + xmlSchemaInitTypes(); if (ctxt == NULL) return (NULL); - nberrors = ctxt->nberrors; ctxt->nberrors = 0; ctxt->counter = 0; ctxt->container = NULL; @@ -11834,9 +13473,20 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt) ctxt); /* + * Check attribute groups for circular references. + */ + xmlHashScan(ret->attrgrpDecl, (xmlHashScanner) + xmlSchemaCheckAttributeGroupCircular, ctxt); + + /* + * Then fixup all model group definitions. + */ + xmlHashScan(ret->groupDecl, (xmlHashScanner) xmlSchemaGroupDefFixup, ctxt); + + /* * Then fixup all types properties */ - xmlHashScan(ret->typeDecl, (xmlHashScanner) xmlSchemaTypeFixup, ctxt); + xmlHashScan(ret->typeDecl, (xmlHashScanner) xmlSchemaTypeFixup, ctxt); /* * Then fix references of element declaration; apply constraints. @@ -11844,10 +13494,16 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt) xmlHashScanFull(ret->elemDecl, (xmlHashScannerFull) xmlSchemaRefFixupCallback, ctxt); + /* + * Check model groups defnitions for circular references. + */ + xmlHashScan(ret->groupDecl, (xmlHashScanner) + xmlSchemaCheckGroupDefCircular, ctxt); + /* - * Then build the content model for all elements + * Then build the content model for all complex types */ - xmlHashScan(ret->elemDecl, + xmlHashScan(ret->typeDecl, (xmlHashScanner) xmlSchemaBuildContentModel, ctxt); /* @@ -11856,6 +13512,16 @@ xmlSchemaParse(xmlSchemaParserCtxtPtr ctxt) xmlHashScan(ret->typeDecl, (xmlHashScanner) xmlSchemaCheckDefaults, ctxt); + /* + * Validate the value constraint of attribute declarations/uses. + */ + xmlHashScan(ret->attrDecl, (xmlHashScanner) xmlSchemaCheckAttrValConstr, ctxt); + + /* + * Validate the value constraint of element declarations. + */ + xmlHashScan(ret->elemDecl, (xmlHashScanner) xmlSchemaCheckElemValConstr, ctxt); + if (ctxt->nberrors != 0) { xmlSchemaFree(ret); @@ -12074,10 +13740,11 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, int fireErrors) { int ret = 0; + xmlNodePtr node; xmlSchemaTypePtr biType; /* The build-in type. */ xmlSchemaTypePtr tmpType; xmlSchemaFacetLinkPtr facetLink; - int retFacet, hasFacet; + int retFacet; xmlSchemaFacetPtr facet; unsigned long len = 0; @@ -12086,6 +13753,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, printf(" fireErrors: %d\n", fireErrors); #endif + node = ctxt->node; /* * NOTE: Do not jump away, if the facetSet of the given type is * empty: until now, "pattern" facets of the *base types* need to @@ -12095,7 +13763,7 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, while ((biType != NULL) && (biType->type != XML_SCHEMA_TYPE_BASIC)) biType = biType->baseType; if (biType == NULL) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateFacetsInternal, " "the base type axis of the given type '%s' does not resolve to " "a built-in type.\n", @@ -12132,13 +13800,13 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, ctxt->value); } if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateFacetsInternal, " "validating facet of type '%s'.\n", type->name, NULL); break; } else if ((ret > 0) && (fireErrors)) { - xmlSchemaVFacetErr(ctxt, ret, ctxt->cur, value, len, + xmlSchemaVFacetErr(ctxt, ret, node, value, len, type, facet, NULL, NULL, NULL, NULL); } @@ -12162,10 +13830,10 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, if (retFacet > 0) { ret = XML_SCHEMAV_CVC_ENUMERATION_VALID; if (fireErrors) - xmlSchemaVFacetErr(ctxt, ret, ctxt->cur, + xmlSchemaVFacetErr(ctxt, ret, node, value, 0, type, NULL, NULL, NULL, NULL, NULL); } else if (retFacet < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateFacetsInternal, " "validating facet of type '%s'.\n", BAD_CAST "enumeration", NULL); @@ -12178,20 +13846,26 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, * Process patters. Pattern facets are ORed at type level * and ANDed if derived. Walk the base type axis. */ - hasFacet = 0; tmpType = type; facet = NULL; do { retFacet = 0; for (facetLink = tmpType->facetSet; facetLink != NULL; - facetLink = facetLink->next) { + facetLink = facetLink->next) { if (facetLink->facet->type != XML_SCHEMA_FACET_PATTERN) continue; retFacet = xmlSchemaValidateFacet(biType, facetLink->facet, value, ctxt->value); - if (retFacet <= 0) + if (retFacet == 0) break; - else + else if (retFacet < 0) { + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaValidateFacetsInternal, " + "validating 'pattern' facet '%s' of type '%s'.\n", + facetLink->facet->value, tmpType->name); + ret = -1; + break; + } else /* Save the last non-validating facet. */ facet = facetLink->facet; } @@ -12199,16 +13873,10 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, break; tmpType = tmpType->baseType; } while ((tmpType != NULL) && (tmpType->type != XML_SCHEMA_TYPE_BASIC)); - if (retFacet < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, - "Internal error: xmlSchemaValidateSimpleTypeValue, " - "validating 'pattern' facets of type '%s'.\n", - tmpType->name, NULL); - ret = -1; - } else if (retFacet > 0) { + if (retFacet > 0) { ret = XML_SCHEMAV_CVC_PATTERN_VALID; if (fireErrors) { - xmlSchemaVFacetErr(ctxt, ret, ctxt->cur, value, 0, type, facet, + xmlSchemaVFacetErr(ctxt, ret, node, value, 0, type, facet, NULL, NULL, NULL, NULL); } } @@ -12230,15 +13898,12 @@ xmlSchemaValidateFacetsInternal(xmlSchemaValidCtxtPtr ctxt, * * ************************************************************************/ -static int xmlSchemaValidateContent(xmlSchemaValidCtxtPtr ctxt, - xmlNodePtr node); static int xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSchemaTypePtr type); -static int xmlSchemaValidateType(xmlSchemaValidCtxtPtr ctxt, - xmlNodePtr elem, - xmlSchemaElementPtr elemDecl, - xmlSchemaTypePtr type); +static int xmlSchemaValidateElementByType(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type, + int valSimpleContent); /** @@ -12290,6 +13955,7 @@ xmlSchemaRegisterAttributes(xmlSchemaValidCtxtPtr ctxt, xmlAttrPtr attrs) tmp->attr = attrs; tmp->state = XML_SCHEMAS_ATTR_UNKNOWN; tmp->next = NULL; + tmp->decl = NULL; if (ctxt->attr == NULL) ctxt->attr = tmp; else @@ -12329,6 +13995,353 @@ xmlSchemaValidateCheckNodeList(xmlNodePtr nodelist) } #endif +static void +xmlSchemaPostSchemaAssembleFixup(xmlSchemaParserCtxtPtr ctxt) +{ + int i, nbItems; + xmlSchemaTypePtr item, *items; + + + /* + * During the Assemble of the schema ctxt->curItems has + * been filled with the relevant new items. Fix those up. + */ + nbItems = ctxt->assemble->nbItems; + items = (xmlSchemaTypePtr *) ctxt->assemble->items; + + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_ATTRIBUTE: + xmlSchemaAttrFixup((xmlSchemaAttributePtr) item, ctxt, NULL); + break; + case XML_SCHEMA_TYPE_ELEMENT: + xmlSchemaRefFixupCallback((xmlSchemaElementPtr) item, ctxt, + NULL, NULL, NULL); + break; + case XML_SCHEMA_TYPE_ATTRIBUTEGROUP: + xmlSchemaAttrGrpFixup((xmlSchemaAttributeGroupPtr) item, + ctxt, NULL); + break; + case XML_SCHEMA_TYPE_GROUP: + xmlSchemaGroupDefFixup(item, ctxt, NULL); + default: + break; + } + } + /* + * Circularity checks. + */ + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_GROUP: + xmlSchemaCheckGroupDefCircular(item, ctxt, NULL); + break; + case XML_SCHEMA_TYPE_ATTRIBUTEGROUP: + xmlSchemaCheckAttributeGroupCircular( + (xmlSchemaAttributeGroupPtr) item, ctxt, NULL); + break; + default: + break; + } + } + /* + * Fixup for all other item. + * TODO: Hmm, not sure if starting from complex/simple types, + * all subsequent items will be reached. + */ + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_SIMPLE: + case XML_SCHEMA_TYPE_COMPLEX: + xmlSchemaTypeFixup(item, ctxt, NULL); + break; + default: + break; + } + } + /* + * Check facet values. Note that facets are + * hold by complex and simple type components only. + */ + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_SIMPLE: + case XML_SCHEMA_TYPE_COMPLEX: + xmlSchemaCheckDefaults(item, ctxt, NULL); + break; + default: + break; + } + } + /* + * Build the content model for complex types. + */ + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_COMPLEX: + xmlSchemaBuildContentModel(item, ctxt, NULL); + break; + default: + break; + } + } + /* + * Validate value contraint values. + */ + for (i = 0; i < nbItems; i++) { + item = items[i]; + switch (item->type) { + case XML_SCHEMA_TYPE_ATTRIBUTE: + xmlSchemaCheckAttrValConstr((xmlSchemaAttributePtr) item, ctxt, NULL); + break; + case XML_SCHEMA_TYPE_ELEMENT: + xmlSchemaCheckElemValConstr((xmlSchemaElementPtr) item, ctxt, NULL); + break; + default: + break; + } + } +} + +/** + * xmlSchemaAssembleByLocation: + * @pctxt: a schema parser context + * @vctxt: a schema validation context + * @schema: the existing schema + * @node: the node that fired the assembling + * @nsName: the namespace name of the new schema + * @location: the location of the schema + * + * Expands an existing schema by an additional schema. + * + * Returns 0 if the new schema is correct, a positive error code + * number otherwise and -1 in case of an internal or API error. + */ +static int +xmlSchemaAssembleByLocation(xmlSchemaValidCtxtPtr vctxt, + xmlSchemaPtr schema, + xmlNodePtr node, + const xmlChar *nsName, + const xmlChar *location) +{ + const xmlChar *targetNs, *oldtns; + xmlDocPtr doc, olddoc; + int oldflags, ret = 0; + xmlNodePtr docElem; + xmlSchemaParserCtxtPtr pctxt; + + /* + * This should be used: + * 1. on <import>(s) + * 2. if requested by the validated instance + * 3. if requested via the API + */ + if ((vctxt == NULL) || (schema == NULL)) + return (-1); + /* + * Create a temporary parser context. + */ + if ((vctxt->pctxt == NULL) && + (xmlSchemaCreatePCtxtOnVCtxt(vctxt) == -1)) { + xmlSchemaVErr(vctxt, node, + XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaAssembleByLocation, " + "failed to create a temp. parser context.\n", + NULL, NULL); + return (-1); + } + pctxt = vctxt->pctxt; + /* + * Set the counter to produce unique names for anonymous items. + */ + pctxt->counter = schema->counter; + /* + * Acquire the schema document. + */ + ret = xmlSchemaAcquireSchemaDoc(pctxt, schema, node, + nsName, location, &doc, &targetNs, 0); + if (ret != 0) { + if (doc != NULL) + xmlFreeDoc(doc); + } else if (doc != NULL) { + docElem = xmlDocGetRootElement(doc); + /* + * Create new assemble info. + */ + if (pctxt->assemble == NULL) { + pctxt->assemble = xmlSchemaNewAssemble(); + if (pctxt->assemble == NULL) { + xmlSchemaVErrMemory(vctxt, + "Memory error: xmlSchemaAssembleByLocation, " + "allocating assemble info", NULL); + xmlFreeDoc(doc); + return (-1); + } + } + /* + * Save and reset the context & schema. + */ + oldflags = schema->flags; + oldtns = schema->targetNamespace; + olddoc = schema->doc; + + xmlSchemaClearSchemaDefaults(schema); + schema->targetNamespace = targetNs; + /* schema->nbCurItems = 0; */ + pctxt->schema = schema; + pctxt->ctxtType = NULL; + pctxt->parentItem = NULL; + + xmlSchemaParseSchemaDefaults(pctxt, schema, docElem); + xmlSchemaParseSchemaTopLevel(pctxt, schema, docElem->children); + xmlSchemaPostSchemaAssembleFixup(pctxt); + /* + * Set the counter of items. + */ + schema->counter = pctxt->counter; + /* + * Free the list of assembled components. + */ + pctxt->assemble->nbItems = 0; + /* + * Restore the context & schema. + */ + schema->flags = oldflags; + schema->targetNamespace = oldtns; + schema->doc = olddoc; + ret = pctxt->err; + } + return (ret); +} + +/** + * xmlSchemaAssembleByXSIAttr: + * @vctxt: a schema validation context + * @xsiAttr: an xsi attribute + * @noNamespace: whether a schema with no target namespace is exptected + * + * Expands an existing schema by an additional schema using + * the xsi:schemaLocation or xsi:noNamespaceSchemaLocation attribute + * of an instance. If xsi:noNamespaceSchemaLocation is used, @noNamespace + * must be set to 1. + * + * Returns 0 if the new schema is correct, a positive error code + * number otherwise and -1 in case of an internal or API error. + */ +static int +xmlSchemaAssembleByXSIAttr(xmlSchemaValidCtxtPtr vctxt, + xmlAttrPtr xsiAttr, + int noNamespace) +{ + xmlChar *value; + const xmlChar *cur, *end; + const xmlChar *nsname = NULL, *location; + int count = 0; + int ret = 0; + + if (xsiAttr == NULL) { + xmlSchemaVCustomErr(vctxt, XML_SCHEMAV_INTERNAL, + NULL, NULL, + "Internal error: xmlSchemaAssembleByXSIAttr, " + "bad arguments", NULL); + return (-1); + } + /* + * Parse the value; we will assume an even number of values + * to be given (this is how Xerces and XSV work). + */ + value = xmlNodeGetContent((xmlNodePtr) xsiAttr); + cur = value; + do { + if (noNamespace != 1) { + /* + * Get the namespace name. + */ + while (IS_BLANK_CH(*cur)) + cur++; + end = cur; + while ((*end != 0) && (!(IS_BLANK_CH(*end)))) + end++; + if (end == cur) + break; + count++; + nsname = xmlDictLookup(vctxt->schema->dict, cur, end - cur); + cur = end; + } + /* + * Get the URI. + */ + while (IS_BLANK_CH(*cur)) + cur++; + end = cur; + while ((*end != 0) && (!(IS_BLANK_CH(*end)))) + end++; + if (end == cur) + break; + count++; + location = xmlDictLookup(vctxt->schema->dict, cur, end - cur); + cur = end; + ret = xmlSchemaAssembleByLocation(vctxt, vctxt->schema, + xsiAttr->parent, nsname, location); + if (ret == -1) { + xmlSchemaVCustomErr(vctxt, + XML_SCHEMAV_INTERNAL, + (xmlNodePtr) xsiAttr, NULL, + "Internal error: xmlSchemaAssembleByXSIAttr, " + "assembling schemata", NULL); + if (value != NULL) + xmlFree(value); + return (-1); + } + } while (*cur != 0); + if (value != NULL) + xmlFree(value); + return (ret); +} + +/** + * xmlSchemaAssembleByXSIElem: + * @vctxt: a schema validation context + * @elem: an element node possibly holding xsi attributes + * @noNamespace: whether a schema with no target namespace is exptected + * + * Assembles an existing schema by an additional schema using + * the xsi:schemaLocation or xsi:noNamespaceSchemaLocation attributes + * of the given @elem. + * + * Returns 0 if the new schema is correct, a positive error code + * number otherwise and -1 in case of an internal or API error. + */ +static int +xmlSchemaAssembleByXSIElem(xmlSchemaValidCtxtPtr vctxt, + xmlNodePtr elem) +{ + int ret = 0, retNs = 0; + xmlAttrPtr attr; + + attr = xmlHasNsProp(elem, BAD_CAST "schemaLocation", xmlSchemaInstanceNs); + if (attr != NULL) { + retNs = xmlSchemaAssembleByXSIAttr(vctxt, attr, 0); + if (retNs == -1) + return (-1); + } + attr = xmlHasNsProp(elem, BAD_CAST "noNamespaceSchemaLocation", xmlSchemaInstanceNs); + if (attr != NULL) { + ret = xmlSchemaAssembleByXSIAttr(vctxt, attr, 1); + if (ret == -1) + return (-1); + } + if (retNs != 0) + return (retNs); + else + return (ret); +} + /** * xmlSchemaValidateCallback: * @ctxt: a schema validation context @@ -12351,12 +14364,66 @@ xmlSchemaValidateCallback(xmlSchemaValidCtxtPtr ctxt, "xmlSchemaValidateCallback: %s, %s, %s\n", name, type->name, node->name); #endif + /* + * @type->type will be XML_SCHEMA_TYPE_ANY or XML_SCHEMA_TYPE_ELEMENT. + */ ctxt->type = type; - ctxt->node = node; - xmlSchemaValidateContent(ctxt, node); + ctxt->node = node; + ctxt->cur = node->children; + /* + * Assemble new schemata using xsi. + */ + if (ctxt->xsiAssemble) { + int ret; + + ret = xmlSchemaAssembleByXSIElem(ctxt, ctxt->node); + if (ret == -1) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + ctxt->node, NULL, + "Internal error: xmlSchemaValidateElement, " + "assembling schema by xsi", NULL); + return; + } + /* + * NOTE: We won't react on schema parser errors here. + * TODO: But a warning would be nice. + */ + } + switch (type->type) { + case XML_SCHEMA_TYPE_ELEMENT: { + /* + * NOTE: The build of the content model + * (xmlSchemaBuildAContentModel) ensures that the element + * declaration (and not a reference to it) will be given. + */ + if (((xmlSchemaElementPtr) ctxt->type)->ref != NULL) { + /* + * This is paranoid coding ;-)... it should not + * happen here any more. + */ + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + node, NULL, + "Internal error: xmlSchemaValidateCallback, " + "element declaration 'reference' encountered, " + "but an element declaration was expected", + NULL); + return; + } + xmlSchemaValidateElementByDeclaration(ctxt, + (xmlSchemaElementPtr) type); + break; + } + case XML_SCHEMA_TYPE_ANY: + xmlSchemaValidateElementByWildcard(ctxt, type); + break; + default: + break; + } ctxt->type = oldtype; ctxt->node = oldnode; -} +} /** * xmlSchemaValidateSimpleTypeValue: @@ -12365,6 +14432,7 @@ xmlSchemaValidateCallback(xmlSchemaValidCtxtPtr ctxt, * @fireErrors: shall errors be reported? * @applyFacets: shall facets be applied? * @normalize: shall the value be normalized? + * @checkNodes: shall the content nodes be checked? * * Validates a value by the given type (user derived or built-in). * @@ -12373,17 +14441,20 @@ xmlSchemaValidateCallback(xmlSchemaValidCtxtPtr ctxt, */ static int xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, - const xmlChar *value, + xmlSchemaTypePtr type, + const xmlChar *value, int fireErrors, int applyFacets, - int normalize) + int normalize, + int checkNodes) { - xmlSchemaTypePtr type; + xmlNodePtr node; int ret = 0; xmlChar *normValue = NULL; int wtsp; - type = ctxt->type; + node = ctxt->node; + /* Save the current whitespace normalization type. */ wtsp = ctxt->valueWS; /* * Normalize the value. @@ -12402,6 +14473,67 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, value = (const xmlChar *) normValue; } } + /* + * The nodes of a content must be checked only once, + * this is not working since list types will fire this + * multiple times. + */ + if ((checkNodes == 1) && (ctxt->cur != NULL)) { + xmlNodePtr cur = ctxt->cur; + + do { + switch (cur->type) { + case XML_TEXT_NODE: + case XML_CDATA_SECTION_NODE: + case XML_PI_NODE: + case XML_COMMENT_NODE: + case XML_XINCLUDE_START: + case XML_XINCLUDE_END: + break; + case XML_ENTITY_REF_NODE: + case XML_ENTITY_NODE: + /* TODO: Scour the entities for illegal nodes. */ + TODO break; + case XML_ELEMENT_NODE: { + /* NOTE: Changed to an internal error, since the + * existence of an element node will be already checked in + * xmlSchemaValidateElementBySimpleType and in + * xmlSchemaValidateElementByComplexType. + */ + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + /* XML_SCHEMAS_ERR_INVALIDELEM, */ + node, type, + "Element '%s' found in simple type content", + cur->name); + return (XML_SCHEMAV_INTERNAL); + } + case XML_ATTRIBUTE_NODE: + case XML_DOCUMENT_NODE: + case XML_DOCUMENT_TYPE_NODE: + case XML_DOCUMENT_FRAG_NODE: + case XML_NOTATION_NODE: + case XML_HTML_DOCUMENT_NODE: + case XML_DTD_NODE: + case XML_ELEMENT_DECL: + case XML_ATTRIBUTE_DECL: + case XML_ENTITY_DECL: + case XML_NAMESPACE_DECL: +#ifdef LIBXML_DOCB_ENABLED + case XML_DOCB_DOCUMENT_NODE: +#endif + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + /* XML_SCHEMAS_ERR_INVALIDELEM, */ + node, NULL, + "Node of unexpected type found in simple type content", + NULL); + return (XML_SCHEMAV_INTERNAL); + } + cur = cur->next; + } while (cur != NULL); + } + if (type->type == XML_SCHEMA_TYPE_COMPLEX) { xmlSchemaTypePtr base, anyType; @@ -12414,11 +14546,9 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, (base != anyType)) { base = base->baseType; } - ctxt->type = base; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 1, 0, 1); - ctxt->type = type; + ret = xmlSchemaValidateSimpleTypeValue(ctxt, base, value, 1, 0, 1, 0); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating complex type '%s'\n", type->name, NULL); @@ -12436,90 +14566,35 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, ret = xmlSchemaValidateFacetsInternal(ctxt, type, value, 0, fireErrors); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating facets of complex type '%s'\n", type->name, NULL); } else if (ret > 0) { ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1; - /* - Disabled, since the facet validation already reports errors. if (fireErrors) - xmlSchemaVSimpleTypeErr(ctxt, ret, ctxt->cur, value, type); - */ + xmlSchemaVSimpleTypeErr(ctxt, ret, node, value, type); } } } else if (type->type == XML_SCHEMA_TYPE_BASIC) { - xmlNodePtr child; if (ctxt->value != NULL) { xmlSchemaFreeValue(ctxt->value); ctxt->value = NULL; } - child = ctxt->node; - while (child != NULL) { - switch (child->type) { - case XML_TEXT_NODE: - case XML_CDATA_SECTION_NODE: - case XML_PI_NODE: - case XML_COMMENT_NODE: - case XML_XINCLUDE_START: - case XML_XINCLUDE_END: - break; - case XML_ENTITY_REF_NODE: - case XML_ENTITY_NODE: - /* TODO: Scour the entities for illegal nodes. */ - TODO break; - case XML_ELEMENT_NODE: { - /* NOTE: Changed to an internal error, since the - * existence of an element node will be already checked in - * xmlSchemaValidateSimpleTypeElement and in - * xmlSchemaValidateComplexType. - */ - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_INTERNAL, - /* XML_SCHEMAS_ERR_INVALIDELEM, */ - ctxt->cur, type, - "Element found in content", NULL); - return (XML_SCHEMAV_INTERNAL); - } - case XML_ATTRIBUTE_NODE: - case XML_DOCUMENT_NODE: - case XML_DOCUMENT_TYPE_NODE: - case XML_DOCUMENT_FRAG_NODE: - case XML_NOTATION_NODE: - case XML_HTML_DOCUMENT_NODE: - case XML_DTD_NODE: - case XML_ELEMENT_DECL: - case XML_ATTRIBUTE_DECL: - case XML_ENTITY_DECL: - case XML_NAMESPACE_DECL: -#ifdef LIBXML_DOCB_ENABLED - case XML_DOCB_DOCUMENT_NODE: -#endif - { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_INTERNAL, - /* XML_SCHEMAS_ERR_INVALIDELEM, */ - ctxt->cur, NULL, - "Node of unexpected type found in content", - NULL); - return (XML_SCHEMAV_INTERNAL); - } - } - child = child->next; - - } - ret = xmlSchemaValPredefTypeNodeNoNorm(type, value, &(ctxt->value), ctxt->cur); + /* + * STREAM-READ-CHILDREN. + */ + ret = xmlSchemaValPredefTypeNodeNoNorm(type, value, &(ctxt->value), node); if (ret > 0) { if (type->flags & XML_SCHEMAS_TYPE_VARIETY_LIST) ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2; else ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1; if (fireErrors) - xmlSchemaVSimpleTypeErr(ctxt, ret, ctxt->cur, value, type); + xmlSchemaVSimpleTypeErr(ctxt, ret, node, value, type); } else if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating built-in type '%s'\n", type->name, NULL); } @@ -12527,18 +14602,16 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, /* 1.2.1 if {variety} is ·atomic· then the string must ·match· * a literal in the ·lexical space· of {base type definition} */ - ctxt->type = type->baseType; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 0, 0, 0); - ctxt->type = type; + ret = xmlSchemaValidateSimpleTypeValue(ctxt, type->baseType, value, 0, 0, 0, 0); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating atomic simple type '%s'\n", type->name, NULL); } else if (ret > 0) { ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1; if (fireErrors) - xmlSchemaVSimpleTypeErr(ctxt, ret, ctxt->cur, value, type); + xmlSchemaVSimpleTypeErr(ctxt, ret, node, value, type); } else if ((applyFacets) && (type->facetSet != NULL)) { /* * Check facets. @@ -12546,7 +14619,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, ret = xmlSchemaValidateFacetsInternal(ctxt, type, value, 0, fireErrors); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating facets of atomic simple type '%s'\n", type->name, NULL); @@ -12583,12 +14656,10 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, break; tmp = xmlStrndup(cur, end - cur); len++; - ctxt->type = tmpType; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, tmp, 0, 1, 0); - ctxt->type = type; + ret = xmlSchemaValidateSimpleTypeValue(ctxt, tmpType, tmp, 0, 1, 0, 0); xmlFree(tmp); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating an item of list simple type '%s'\n", type->name, NULL); @@ -12596,7 +14667,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, } else if (ret > 0) { ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_2; if (fireErrors) - xmlSchemaVSimpleTypeErr(ctxt, ret, ctxt->cur, value, type); + xmlSchemaVSimpleTypeErr(ctxt, ret, node, value, type); break; } cur = end; @@ -12605,7 +14676,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, * Check facets. */ if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating list simple type '%s'\n", type->name, NULL); @@ -12613,7 +14684,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, ret = xmlSchemaValidateFacetsInternal(ctxt, type, value, len, fireErrors); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating facets of list simple type '%s'\n", type->name, NULL); @@ -12653,7 +14724,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, #endif memberLink = xmlSchemaGetUnionSimpleTypeMemberTypes(type); if (memberLink == NULL) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "union simple type '%s' has no member types\n", type->name, NULL); @@ -12661,22 +14732,21 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, } if (ret == 0) { while (memberLink != NULL) { - ctxt->type = memberLink->type; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 0, 1, 1); + ret = xmlSchemaValidateSimpleTypeValue(ctxt, memberLink->type, + value, 0, 1, 1, 0); if ((ret <= 0) || (ret == 0)) break; memberLink = memberLink->next; } - ctxt->type = type; if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating members of union simple type '%s'\n", type->name, NULL); } else if (ret > 0) { ret = XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_3; if (fireErrors) - xmlSchemaVSimpleTypeErr(ctxt, ret, ctxt->cur, value, type); + xmlSchemaVSimpleTypeErr(ctxt, ret, node, value, type); } } /* @@ -12690,7 +14760,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, * against which the ·union· is successfully validated. */ if (normValue != NULL) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "the value was already normalized for the union simple " "type '%s'.\n", type->name, NULL); @@ -12708,7 +14778,7 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, ret = xmlSchemaValidateFacetsInternal(ctxt, type, value, 0, fireErrors); if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateSimpleTypeValue, " "validating facets of union simple type '%s'\n", type->name, NULL); @@ -12721,7 +14791,6 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, } } } - ctxt->type = type; ctxt->valueWS = wtsp; if (normValue != NULL) xmlFree(normValue); @@ -12739,38 +14808,43 @@ xmlSchemaValidateSimpleTypeValue(xmlSchemaValidCtxtPtr ctxt, * number otherwise and -1 in case of an internal or API error. */ static int -xmlSchemaValidateSimpleTypeElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) +xmlSchemaValidateElementBySimpleType(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type, + int valSimpleContent) { - xmlNodePtr child; - xmlSchemaTypePtr type; + xmlSchemaTypePtr oldtype; + xmlNodePtr node; xmlAttrPtr attr; - int ret = 0; - xmlChar *value; xmlNodePtr cur; - - - child = ctxt->node; - type = ctxt->type; - + int ret = 0, retval = 0; + if ((ctxt == NULL) || (type == NULL)) { - xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, - "Internal error: xmlSchemaValidateSimpleTypeElement %s\n", - node->name, NULL); - return (-1); + xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_INTERNAL, NULL, NULL, + "Internal error: xmlSchemaValidateElementBySimpleType, " + "bad arguments", NULL); + return (-1); } + oldtype = ctxt->type; + node = ctxt->node; /* * cvc-type: 3.1.2 The element information item must have no element * information item [children]. */ - cur = child; + /* + * STREAM: Child nodes are processed. + */ + cur = node->children; while (cur != NULL) { + /* + * TODO: Entities, will they produce elements as well? + */ if (cur->type == XML_ELEMENT_NODE) { xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_CVC_TYPE_3_1_2, node, type, "No element content allowed", NULL); - return (XML_SCHEMAV_CVC_TYPE_3_1_2); + ret = XML_SCHEMAV_CVC_TYPE_3_1_2; } cur = cur->next; } @@ -12781,7 +14855,10 @@ xmlSchemaValidateSimpleTypeElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) * The attributes of must be empty, excepting those whose namespace name * is identical to http://www.w3.org/2001/XMLSchema-instance and whose local * name is one of type, nil, schemaLocation or noNamespaceSchemaLocation. - */ + */ + /* + * STREAM: Attribute nodes are processed. + */ attr = node->properties; while (attr != NULL) { if ((attr->ns == NULL) || @@ -12792,172 +14869,640 @@ xmlSchemaValidateSimpleTypeElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) (!xmlStrEqual (attr->name, BAD_CAST "noNamespaceSchemaLocation")))) { xmlSchemaVIllegalAttrErr(ctxt, - XML_SCHEMAV_CVC_TYPE_3_1_1, attr); - return (ctxt->err); + XML_SCHEMAV_CVC_TYPE_3_1_1, attr); + ret = XML_SCHEMAV_CVC_TYPE_3_1_1; } attr = attr->next; } - if ((type->type != XML_SCHEMA_TYPE_BASIC) || - (type->builtInType != XML_SCHEMAS_ANYSIMPLETYPE)) { - value = xmlNodeGetContent(child); - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 1, 1, 1); + /* + * This will skip validation if the type is 'anySimpleType' and + * if the value was already validated (e.g. default values). + */ + if ((valSimpleContent == 1) && + ((type->type != XML_SCHEMA_TYPE_BASIC) || + (type->builtInType != XML_SCHEMAS_ANYSIMPLETYPE))) { + xmlChar *value; + + value = xmlNodeGetContent(node); + /* + * NOTE: This call will not check the content nodes, since + * this should be checked here already. + */ + retval = xmlSchemaValidateSimpleTypeValue(ctxt, type, value, + 1, 1, 1, 0); if (value != NULL) xmlFree(value); - ctxt->type = type; + if (retval != 0) + ret = retval; } + ctxt->type = oldtype; return (ret); } /** - * xmlSchemaValidateElementType: + * xmlSchemaValQNameAcquire: + * @value: the lexical represantation of the QName value + * @node: the node to search for the corresponding namespace declaration + * @nsName: the resulting namespace name if found + * + * Checks that a value conforms to the lexical space of the type QName; + * if valid, the corresponding namespace name is searched and retured + * as a copy in @nsName. The local name is returned in @localName as + * a copy. + * + * Returns 0 if valid, 1 if not valid by type, 2 if no corresponding + * namespace declaration was found in scope; -1 in case of an internal or + * API error. + */ +static int +xmlSchemaValQNameAcquire(const xmlChar *value, xmlNodePtr node, + xmlChar **nsName, xmlChar **localName) +{ + int ret; + xmlChar *local = NULL; + + if ((nsName == NULL) || (localName == NULL) || (node == NULL)) + return (-1); + *nsName = NULL; + *localName = NULL; + ret = xmlValidateQName(value, 1); + if (ret == 0) { + xmlChar *prefix; + xmlNsPtr ns; + + /* + * NOTE: xmlSplitQName2 will return a duplicated + * string. + */ + local = xmlSplitQName2(value, &prefix); + if (local == NULL) + local = xmlStrdup(value); + ns = xmlSearchNs(node->doc, node, prefix); + /* + * A namespace need not to be found if the prefix is NULL. + */ + if (ns != NULL) { + /* + * TODO: Is it necessary to duplicate the URI here? + */ + *nsName = xmlStrdup(ns->href); + } else if (prefix != NULL) { + xmlFree(prefix); + if (local != NULL) + xmlFree(local); + return (2); + } + *localName = local; + if (prefix != NULL) + xmlFree(prefix); + } else + return (1); + return (ret); +} + +/** + * xmlSchemaHasElemContent: + * @node: the node + * + * Scours the content of the given node for element + * nodes. + * + * Returns 1 if an element node is found, + * 0 otherwise. + */ +static int +xmlSchemaHasElemContent(xmlNodePtr node) +{ + if (node == NULL) + return (0); + node = node->children; + while (node != NULL) { + if (node->type == XML_ELEMENT_NODE) + return (1); + node = node->next; + } + return (0); +} +/** + * xmlSchemaHasElemOrCharContent: + * @node: the node + * + * Scours the content of the given node for element + * and character nodes. + * + * Returns 1 if an element or character node is found, + * 0 otherwise. + */ +static int +xmlSchemaHasElemOrCharContent(xmlNodePtr node) +{ + if (node == NULL) + return (0); + node = node->children; + while (node != NULL) { + switch (node->type) { + case XML_ELEMENT_NODE: + /* + * TODO: Ask Daniel if these are all character nodes. + */ + case XML_TEXT_NODE: + case XML_CDATA_SECTION_NODE: + /* + * TODO: How XML_ENTITY_NODEs evaluated? + */ + case XML_ENTITY_REF_NODE: + case XML_ENTITY_NODE: + return (1); + break; + default: + break; + } + node = node->next; + } + return (0); +} + + +/** + * xmlSchemaValidateElementByDeclaration: * @ctxt: a schema validation context * @node: the top node. * * Validate the content of an element type. - * Validation Rule: Element Locally Valid (Complex Type) + * Validation Rule: Element Locally Valid (Element) * * Returns 0 if the element is schemas valid, a positive error code * number otherwise and -1 in case of internal or API error. */ static int -xmlSchemaValidateElementType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) +xmlSchemaValidateElementByDeclaration(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaElementPtr elemDecl) { - xmlNodePtr child; - xmlRegExecCtxtPtr oldregexp; /* cont model of the parent */ - xmlSchemaElementPtr decl; - int ret; - xmlSchemaAttrStatePtr attrs = NULL, attrTop = NULL; + xmlNodePtr elem; + int ret = 0; + xmlSchemaTypePtr actualType = NULL; + xmlAttrPtr attr; + xmlChar *attrValue; + int nilled = 0, elemHasContent = -1; - /* This one is called by xmlSchemaValidateContent only. */ /* - * TODO: Look into "xmlSchemaValidateElement" for missing parts, which should - * go in here as well. - */ + * This one is called by xmlSchemaValidateElementByWildcardInternal, + * xmlSchemaValidateElementByAnyType and xmlSchemaValidateElement. + * Note that @elemDecl will be the declaration and never the + * reference to a declaration. + */ - /* TODO: Is this one called always with an element declaration as the - * context's type? - */ + if (ctxt == NULL) { + xmlSchemaVErr(ctxt, NULL, XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "bad arguments.\n", + NULL, NULL); + return (-1); + } - oldregexp = ctxt->regexp; + elem = ctxt->node; - child = ctxt->node; - decl = (xmlSchemaElementPtr) ctxt->type; + /* + * cvc-elt (3.3.4) : 1 + */ + if (elemDecl == NULL) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_1, + elem, NULL, + "No matching declaration available", NULL); + return (ctxt->err); + } + /* + * cvc-elt (3.3.4) : 2 + */ + if (elemDecl->flags & XML_SCHEMAS_ELEM_ABSTRACT) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_2, + elem, NULL, + "The element declaration is abstract", NULL); + return (ctxt->err); + } + + /* + * cvc-elt (3.3.4) : 3 + * Handle 'xsi:nil'. + */ + + attr = xmlHasNsProp(elem, BAD_CAST "nil", xmlSchemaInstanceNs); + if (attr != NULL) { + attrValue = xmlNodeGetContent((xmlNodePtr) attr); + ctxt->node = (xmlNodePtr) attr; + ctxt->cur = attr->children; + ret = xmlSchemaValidateSimpleTypeValue(ctxt, + xmlSchemaGetBuiltInType(XML_SCHEMAS_BOOLEAN), + BAD_CAST attrValue, 1, 1, 1, 1); + ctxt->node = elem; + ctxt->type = (xmlSchemaTypePtr) elemDecl; + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + (xmlNodePtr) attr, (xmlSchemaTypePtr) elemDecl, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "validating the attribute 'xsi:nil'", NULL); + if (attrValue != NULL) + xmlFree(attrValue); + return (-1); + } + if ((elemDecl->flags & XML_SCHEMAS_ELEM_NILLABLE) == 0) { + /* + * cvc-elt (3.3.4) : 3.1 + */ + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_3_1, + elem, NULL, + "The element is not 'nillable'", NULL); + } else { + if (xmlStrEqual(BAD_CAST attrValue, BAD_CAST "true") || + xmlStrEqual(BAD_CAST attrValue, BAD_CAST "1")) { + ret = 0; + /* + * cvc-elt (3.3.4) : 3.2.1 + */ + elemHasContent = xmlSchemaHasElemOrCharContent(elem); + if (elemHasContent == 1) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_3_2_1, + /* XML_SCHEMAS_ERR_NOTEMPTY, */ + elem, (xmlSchemaTypePtr) elemDecl, + "The 'nilled' element must have no character or " + "element content", NULL); + ret = XML_SCHEMAV_CVC_ELT_3_2_1; + } + /* + * cvc-elt (3.3.4) : 3.2.2 + */ + if ((elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) && + (elemDecl->value != NULL)) { + xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_CVC_ELT_3_2_2, + /* XML_SCHEMAS_ERR_HAVEDEFAULT, */ + elem, (xmlSchemaTypePtr) elemDecl, + "There is a fixed value constraint defined for " + "the 'nilled' element", NULL); + ret = XML_SCHEMAV_CVC_ELT_3_2_2; + } + if (ret == 0) + nilled = 1; + } + } + if (attrValue != NULL) + xmlFree(attrValue); + } + - if ((ctxt == NULL) || (decl == NULL)) { - xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, - "Internal error: xmlSchemaValidateElementType\n", - node->name, NULL); - return (-1); + actualType = elemDecl->subtypes; + /* + * cvc-elt (3.3.4) : 4 + * Handle 'xsi:type'. + */ + + attr = xmlHasNsProp(elem, BAD_CAST "type", xmlSchemaInstanceNs); + if (attr != NULL) { + xmlChar *nsName = NULL, *local = NULL; + + /* + * TODO: We should report a *warning* that the type was overriden + * by the instance. + */ + + /* + * cvc-elt (3.3.4) : 4.1 + */ + attrValue = xmlNodeGetContent((xmlNodePtr) attr); + ret = xmlSchemaValQNameAcquire(attrValue, attr->parent, + &nsName, &local); + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + (xmlNodePtr) attr, (xmlSchemaTypePtr) elemDecl, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "validating the attribute 'xsi:type'", NULL);; + FREE_AND_NULL(attrValue) + FREE_AND_NULL(nsName) + FREE_AND_NULL(local) + return (-1); + } else if (ret == 1) { + xmlSchemaVSimpleTypeErr(ctxt, + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, + (xmlNodePtr) attr, attrValue, + xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME)); + } else if (ret == 2) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_DATATYPE_VALID_1_2_1, + (xmlNodePtr) attr, + xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), + "The QName value '%s' has no " + "corresponding namespace declaration in scope", + attrValue); + } else { + /* + * cvc-elt (3.3.4) : 4.2 + */ + actualType = xmlSchemaGetType(ctxt->schema, local, nsName); + if (actualType == NULL) { + xmlChar *strA = NULL; + + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_4_2, + (xmlNodePtr) attr, + xmlSchemaGetBuiltInType(XML_SCHEMAS_QNAME), + "The value %s does not resolve to a type " + "definition", + xmlSchemaFormatNsUriLocal(&strA, nsName, local)); + FREE_AND_NULL(strA); + } else { + /* + * URGENT TODO: cvc-elt (3.3.4) : 4.3 (Type Derivation OK) + */ + } + } + FREE_AND_NULL(attrValue) + FREE_AND_NULL(nsName) + FREE_AND_NULL(local) + } + /* TODO: Change the handling of missing types according to + * the spec. + */ + if (actualType == NULL) { + xmlSchemaVComplexTypeErr(ctxt, + XML_SCHEMAV_CVC_TYPE_1, + elem, (xmlSchemaTypePtr) elemDecl, + "The type definition is absent"); + return (XML_SCHEMAV_CVC_TYPE_1); } + /* * TODO: Since this should be already checked by the content model automaton, * and we want to get rid of the XML_SCHEMAS_ERR... types, the error code * has been changed to XML_SCHEMAV_INTERNAL. */ + /* if (child == NULL) { if (decl->minOccurs > 0) { xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, - /* XML_SCHEMAS_ERR_MISSING, */ + XML_SCHEMAS_ERR_MISSING, "Element %s: missing child %s\n", node->name, decl->name); } return (ctxt->err); - } - + } + */ /* * Verify the element matches * TODO, FIXME: Can this still happen here? Isn't this already checked - * by the content model automaton? - */ + * by the content model automaton? if (!xmlStrEqual(child->name, decl->name)) { xmlSchemaVErr3(ctxt, node, XML_SCHEMAV_INTERNAL, - /* XML_SCHEMAS_ERR_WRONGELEM, */ + XML_SCHEMAS_ERR_WRONGELEM, "Element %s: missing child %s found %s\n", node->name, decl->name, child->name); return (ctxt->err); } - /* - * Verify the attributes - */ - /* - * TODO: This "attrTop" thing is not needed any more. */ - attrs = ctxt->attr; - attrTop = ctxt->attrTop; - xmlSchemaRegisterAttributes(ctxt, child->properties); - xmlSchemaValidateAttributes(ctxt, child, decl->subtypes); - if (ctxt->attr != NULL) - xmlSchemaFreeAttributeStates(ctxt->attr); - ctxt->attr = attrs; - ctxt->attrTop = attrTop; - + if (elemHasContent == -1) + elemHasContent = xmlSchemaHasElemOrCharContent(elem); /* - * Verify the element content recursively - */ - oldregexp = ctxt->regexp; + * cvc-elt (3.3.4) : 5 + * The appropriate case among the following must be true: + */ /* - * FIXME TODO: This one creates a regexp even if no content - * model was defined. Somehow ->contModel is always not NULL - * for complex types, even if they are empty. - */ - if (decl->contModel != NULL) { - ctxt->regexp = xmlRegNewExecCtxt(decl->contModel, - (xmlRegExecCallbacks) - xmlSchemaValidateCallback, ctxt); -#ifdef DEBUG_AUTOMATA - xmlGenericError(xmlGenericErrorContext, "====> %s\n", node->name); -#endif - } - xmlSchemaValidateType(ctxt, child, decl, decl->subtypes); + * cvc-elt (3.3.4) : 5.1 + * If the declaration has a {value constraint}, + * the item has neither element nor character [children] and + * clause 3.2 has not applied, then all of the following must be true: + */ + if ((elemHasContent == 0) && (nilled == 0) && (elemDecl->value != NULL)) { + /* + * cvc-elt (3.3.4) : 5.1.1 + * If the ·actual type definition· is a ·local type definition· + * then the canonical lexical representation of the {value constraint} + * value must be a valid default for the ·actual type definition· as + * defined in Element Default Valid (Immediate) (§3.3.6). + */ + /* + * NOTE: 'local' above means types aquired by xsi:type. + */ + ret = 0; + if (actualType != elemDecl->subtypes) { + xmlSchemaCreatePCtxtOnVCtxt(ctxt); + ret = xmlSchemaCheckCOSValidDefault(ctxt->pctxt, ctxt, actualType, + elemDecl->value, NULL); + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + elem, actualType, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "validating a default value", NULL); + return (-1); + } + } + /* + * cvc-elt (3.3.4) : 5.1.2 + * The element information item with the canonical lexical + * representation of the {value constraint} value used as its + * ·normalized value· must be ·valid· with respect to the + * ·actual type definition· as defined by Element Locally Valid (Type) + * (§3.3.4). + */ + /* + * Disable validation of the simple content, since it was already + * done above. + */ + if (ret == 0) { + if (actualType != elemDecl->subtypes) + ret = xmlSchemaValidateElementByType(ctxt, actualType, 0); + else + ret = xmlSchemaValidateElementByType(ctxt, actualType, 0); + ctxt->node = elem; + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + elem, actualType, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "validating against the type", NULL); + return (-1); + } + /* + * PSVI: Create a text node on the instance element. + */ + if (ctxt->options & XML_SCHEMA_VAL_VC_I_CREATE) { + xmlNodePtr textChild; + + textChild = xmlNewText(elemDecl->value); + if (textChild == NULL) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + elem, actualType, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "could not create a default text node for the instance", + NULL); + } else + xmlAddChild(elem, textChild); + } + } - if (decl->contModel != NULL) { - ret = xmlRegExecPushString(ctxt->regexp, NULL, NULL); -#ifdef DEBUG_AUTOMATA - xmlGenericError(xmlGenericErrorContext, - "====> %s : %d\n", node->name, ret); -#endif - if (ret == 0) { - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, - node, decl->subtypes, "The element content is not valid", NULL); - } else if (ret < 0) { - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, - node, decl->subtypes, "The element content is not valid", NULL); -#ifdef DEBUG_CONTENT - } else { - xmlGenericError(xmlGenericErrorContext, - "Element %s content check succeeded\n", - node->name); + } else { + /* + * 5.2.1 The element information item must be ·valid· with respect + * to the ·actual type definition· as defined by Element Locally + * Valid (Type) (§3.3.4). + */ + ret = xmlSchemaValidateElementByType(ctxt, actualType, 1); + ctxt->node = elem; + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + elem, actualType, + "Internal error: xmlSchemaValidateElementByDeclaration, " + "validating a default value", NULL); + return (-1); + } + /* + * 5.2.2 If there is a fixed {value constraint} and clause 3.2 has + * not applied, all of the following must be true: + */ -#endif - } - xmlRegFreeExecCtxt(ctxt->regexp); + if ((elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) && (nilled == 0)) { + /* + * 5.2.2.1 The element information item must have no element + * information item [children]. + * + * TODO REDUNDANT: If the actual type exists, the above call to + * xmlSchemaValidateElementByType will already check for element + * nodes. + */ + if (xmlSchemaHasElemContent(elem)) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_5_2_2_1, + elem, (xmlSchemaTypePtr) elemDecl, + "Elements in the content are not allowed if it is " + "constrained by a fixed value", NULL); + } else { + /* + * 5.2.2.2 The appropriate case among the following must + * be true: + */ + + if (actualType->contentType == XML_SCHEMA_CONTENT_MIXED) { + xmlChar *value; + /* + * 5.2.2.2.1 If the {content type} of the ·actual type + * definition· is mixed, then the *initial value* of the + * item must match the canonical lexical representation + * of the {value constraint} value. + * + * ... the *initial value* of an element information + * item is the string composed of, in order, the + * [character code] of each character information item in + * the [children] of that element information item. + */ + value = xmlNodeListGetString(elem->doc, elem->children, 1); + if (! xmlStrEqual(BAD_CAST value, elemDecl->value)) { + /* + * TODO: Report invalid & expected values as well. + * TODO: Implement the cononical stuff. + */ + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_5_2_2_2_1, + elem, (xmlSchemaTypePtr) elemDecl, + "The value does not match the cononical " + "lexical representation of the fixed constraint", + NULL); + } + if (value != NULL) + xmlFree(value); + } else if ((actualType->contentType == + XML_SCHEMA_CONTENT_SIMPLE) || + (actualType->contentType == XML_SCHEMA_CONTENT_BASIC)) { + xmlChar *value; + + /* + * 5.2.2.2.2 If the {content type} of the ·actual type + * definition· is a simple type definition, then the + * *actual value* of the item must match the canonical + * lexical representation of the {value constraint} value. + */ + /* + * TODO: *actual value* is the normalized value, impl. this. + * TODO: Report invalid & expected values as well. + * TODO: Implement the cononical stuff. + * + */ + value = xmlNodeListGetString(elem->doc, elem->children, 1); + if (! xmlStrEqual(BAD_CAST value, elemDecl->value)) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_5_2_2_2_2, + elem, (xmlSchemaTypePtr) elemDecl, + "The normalized value does not match the cononical " + "lexical representation of the fixed constraint", + NULL); + } + if (value != NULL) + xmlFree(value); + + } + /* + * TODO: What if the content type is not 'mixed' or simple? + */ + + } + + } } - ctxt->regexp = oldregexp; - ctxt->node = child; - ctxt->type = (xmlSchemaTypePtr) decl; + + /* + * TODO: 6 The element information item must be ·valid· with respect to each of + * the {identity-constraint definitions} as per Identity-constraint + * Satisfied (§3.11.4). + */ + + /* + * TODO: 7 If the element information item is the ·validation root·, it must be + * ·valid· per Validation Root Valid (ID/IDREF) (§3.3.4). + */ + return (ctxt->err); } /** - * xmlSchemaValidateAnyInternal: + * xmlSchemaValidateElementByWildcardInternal: * @ctxt: a schema validation context * @node: the top node. * - * Represents the recursive portion of xmlSchemaValidateAny. Not - * intended to be used by other functions. + * Represents the recursive portion of xmlSchemaValidateElementByWildcard. + * Not intended to be used by other functions. * * Returns 0 if the element is valid, a positive error code * number otherwise and -1 in case of an internal error. */ static int -xmlSchemaValidateAnyInternal(xmlSchemaValidCtxtPtr ctxt, - xmlSchemaWildcardPtr wild, - xmlNodePtr node) +xmlSchemaValidateElementByWildcardInternal(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaWildcardPtr wild, + xmlNodePtr node) { const xmlChar *uri; int ret = 0; xmlNodePtr child; - + + if (ctxt->xsiAssemble) { + ret = xmlSchemaAssembleByXSIElem(ctxt, ctxt->node); + if (ret == -1) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + ctxt->node, NULL, + "Internal error: xmlSchemaValidateElement, " + "assembling schema by xsi", NULL); + return (-1); + } + /* + * NOTE: We won't react on schema parser errors here. + * TODO: But a warning would be nice. + */ + } if (wild->processContents != XML_SCHEMAS_ANY_SKIP) { xmlSchemaElementPtr decl = NULL; @@ -12968,8 +15513,7 @@ xmlSchemaValidateAnyInternal(xmlSchemaValidCtxtPtr ctxt, decl = xmlHashLookup3(ctxt->schema->elemDecl, node->name, NULL, NULL); if (decl != NULL) { ctxt->node = node; - ctxt->type = (xmlSchemaTypePtr) decl; - ret = xmlSchemaValidateElementType(ctxt, node->parent); + ret = xmlSchemaValidateElementByDeclaration(ctxt, decl); if (ret < 0) { xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateAnyInternal, " @@ -12980,7 +15524,7 @@ xmlSchemaValidateAnyInternal(xmlSchemaValidCtxtPtr ctxt, } else if (wild->processContents == XML_SCHEMAS_ANY_STRICT) { /* TODO: Change to proper error code. */ xmlSchemaVWildcardErr(ctxt, XML_SCHEMAV_CVC_ELT_1, - node, wild, "Global declaration is absent"); + node, wild, "No matching global declaration available"); return (ctxt->err); } } @@ -12996,10 +15540,11 @@ xmlSchemaValidateAnyInternal(xmlSchemaValidCtxtPtr ctxt, /* TODO: error code. */ xmlSchemaVWildcardErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, child, wild, - "The namespace of the element is not allowed."); + "The namespace of the element is not allowed"); return (ctxt->err); } - ret = xmlSchemaValidateAnyInternal(ctxt, wild, child); + ret = xmlSchemaValidateElementByWildcardInternal(ctxt, + wild, child); if (ret != 0) return (ret); } @@ -13010,17 +15555,26 @@ xmlSchemaValidateAnyInternal(xmlSchemaValidCtxtPtr ctxt, } /** - * xmlSchemaValidateAny: + * xmlSchemaValidateElementContByWildcard: * @ctxt: a schema validation context * * Returns 0 if the element is valid, a positive error code * number otherwise and -1 in case of an internal or API error. */ static int -xmlSchemaValidateAny(xmlSchemaValidCtxtPtr ctxt) +xmlSchemaValidateElementByWildcard(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type) { - return(xmlSchemaValidateAnyInternal(ctxt, - ctxt->type->attributeWildcard, ctxt->cur)); + if ((type == NULL) || (type->type != XML_SCHEMA_TYPE_ANY) || + (ctxt->node == NULL)) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, ctxt->node, NULL, + "Internal error: xmlSchemaValidateElementByWildcard, " + "bad arguments", NULL); + return (-1); + } + return(xmlSchemaValidateElementByWildcardInternal(ctxt, + type->attributeWildcard, ctxt->node)); } /** @@ -13037,35 +15591,45 @@ xmlSchemaValidateAny(xmlSchemaValidCtxtPtr ctxt) * otherwise and -1 in case of an internal or API error. */ static int -xmlSchemaValidateAnyTypeContent(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) +xmlSchemaValidateElementByAnyType(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type) { - xmlNodePtr top = node; - xmlSchemaTypePtr decl; + xmlSchemaTypePtr oldtype; + xmlNodePtr top, cur; + xmlSchemaElementPtr decl; int skipContent, ret; - - if (node->children == NULL) + + if ((type == NULL) || (ctxt->node == NULL)) + return (-1); + + if (ctxt->node->children == NULL) return (0); - node = node->children; - while (node != NULL) { + + oldtype = ctxt->type; + top = ctxt->node; + /* + * STREAM: Child nodes are processed. + */ + cur = ctxt->node->children; + while (cur != NULL) { skipContent = 0; - if (node->type == XML_ELEMENT_NODE) { + if (cur->type == XML_ELEMENT_NODE) { /* * The process contents of the wildcard is "lax", thus * we need to validate the element if a declaration * exists. */ - if (node->ns != NULL) + if (cur->ns != NULL) decl = xmlHashLookup3(ctxt->schema->elemDecl, - node->name, node->ns->href, NULL); + cur->name, cur->ns->href, NULL); else - decl = xmlHashLookup3(ctxt->schema->elemDecl, node->name, NULL, NULL); - + decl = xmlHashLookup3(ctxt->schema->elemDecl, cur->name, NULL, NULL); if (decl != NULL) { - ctxt->node = node; - ctxt->type = (xmlSchemaTypePtr) decl; - ret = xmlSchemaValidateElementType(ctxt, node->parent); + ctxt->node = cur; + ret = xmlSchemaValidateElementByDeclaration(ctxt, decl); + ctxt->node = top; if (ret < 0) { - xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, cur, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateAnyTypeContent, " "validating an element in the context of a wildcard.", NULL, NULL); @@ -13078,74 +15642,38 @@ xmlSchemaValidateAnyTypeContent(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) /* * Browse the full subtree, deep first. */ - if ((skipContent == 0) && (node->children != NULL)) { + if ((skipContent == 0) && (cur->children != NULL)) { /* deep first */ - node = node->children; - } else if ((node != top) && (node->next != NULL)) { + cur = cur->children; + } else if ((cur != top) && (cur->next != NULL)) { /* then siblings */ - node = node->next; - } else if (node != top) { + cur = cur->next; + } else if (cur != top) { /* go up to parents->next if needed */ - while (node != top) { - if (node->parent != NULL) - node = node->parent; - if ((node != top) && (node->next != NULL)) { - node = node->next; + while (cur != top) { + if (cur->parent != NULL) + cur = cur->parent; + if ((cur != top) && (cur->next != NULL)) { + cur = cur->next; break; } - if (node->parent == NULL) { - node = NULL; + if (cur->parent == NULL) { + cur = NULL; break; } } /* exit condition */ - if (node == top) - node = NULL; + if (cur == top) + cur = NULL; } else break; } + ctxt->type = oldtype; return (0); } /** - * xmlSchemaHasElemOrCharContent: - * @node: the node - * - * Scours the content of the given node for element - * and character nodes. - * - * Returns 1 if an element or character node is found, - * 0 otherwise. - */ -static int -xmlSchemaHasElemOrCharContent(xmlNodePtr node) -{ - xmlNodePtr cur; - - if (node == NULL) - return (0); - cur = node->children; - while (cur != NULL) { - if ((cur->type == XML_ELEMENT_NODE) || - /* - * TODO: Ask Daniel if these are all character nodes. - */ - (cur->type == XML_TEXT_NODE) || - (cur->type == XML_CDATA_SECTION_NODE) || - /* - * TODO: How XML_ENTITY_NODEs evaluated? - */ - (cur->type == XML_ENTITY_REF_NODE) || - (cur->type == XML_ENTITY_NODE)) { - return (1); - } - cur = cur->next; - } - return (0); -} - -/** - * xmlSchemaValidateComplexType: + * xmlSchemaValidateElementByComplexType: * @ctxt: a schema validation context * @node: the top node. * @@ -13165,17 +15693,60 @@ xmlSchemaHasElemOrCharContent(xmlNodePtr node) * the report of any additional information by the user. */ static int -xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) +xmlSchemaValidateElementByComplexType(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type, + int valSimpleContent) { - xmlNodePtr child; - xmlSchemaTypePtr type; + xmlSchemaTypePtr oldtype; + xmlNodePtr elem, child; int ret = 0; const xmlChar *nsUri; + xmlSchemaAttrStatePtr attrs = NULL, attrTop = NULL; - child = ctxt->node; - type = ctxt->type; - ctxt->cur = node; + if ((ctxt == NULL) || (type->type != XML_SCHEMA_TYPE_COMPLEX)) + return (-1); + + oldtype = ctxt->type; + ctxt->type = type; + elem = ctxt->node; + + /* + * Verify the attributes + */ + /* + * TODO: This "attrTop" thing is not needed any more. + */ + /* NOTE: removed, since a check for abstract is + * done in the cvc-type constraint. + * + * + * if (type->flags & XML_SCHEMAS_TYPE_ABSTRACT) { + * xmlSchemaVComplexTypeErr(ctxt, + * XML_SCHEMAV_CVC_COMPLEX_TYPE_1, + * elem, type, + * "The type definition is abstract"); + * return (XML_SCHEMAV_CVC_COMPLEX_TYPE_1); + *} + */ + + attrs = ctxt->attr; + attrTop = ctxt->attrTop; + /* + * STREAM: Attribute nodes are processed. + */ + xmlSchemaRegisterAttributes(ctxt, elem->properties); + xmlSchemaValidateAttributes(ctxt, elem, type); + if (ctxt->attr != NULL) + xmlSchemaFreeAttributeStates(ctxt->attr); + ctxt->attr = attrs; + ctxt->attrTop = attrTop; + /* + * TODO: This one creates a regexp even if no content + * model was defined. Somehow ->contModel is always not NULL + * for complex types, even if they are empty. + * TODO: Check if the obove still occurs. + */ switch (type->contentType) { case XML_SCHEMA_CONTENT_EMPTY: { /* @@ -13185,17 +15756,48 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) /* * TODO: Is the entity stuff correct? */ - if (xmlSchemaHasElemOrCharContent(node) == 1) { + if (xmlSchemaHasElemOrCharContent(elem) == 1) { xmlSchemaVComplexTypeErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_2_1, - node, type, + elem, type, "Character or element content is not allowed, " "because the content type is empty"); } break; } + case XML_SCHEMA_CONTENT_MIXED: + if ((type->subtypes == NULL) && + (type->baseType->builtInType == XML_SCHEMAS_ANYTYPE)) { + /* + * The type has 'anyType' as its base and no content model + * is defined -> use 'anyType' as the type to validate + * against. + */ + ret = xmlSchemaValidateElementByAnyType(ctxt, type->baseType); + /* TODO: Handle -1. */ + break; + } + /* No break on purpose. */ case XML_SCHEMA_CONTENT_ELEMENTS: - case XML_SCHEMA_CONTENT_MIXED: + { + xmlRegExecCtxtPtr oldregexp = NULL; + + /* + * Content model check initialization. + */ + if (type->contModel != NULL) { + oldregexp = ctxt->regexp; + ctxt->regexp = xmlRegNewExecCtxt(type->contModel, + (xmlRegExecCallbacks) + xmlSchemaValidateCallback, ctxt); +#ifdef DEBUG_AUTOMATA + xmlGenericError(xmlGenericErrorContext, "====> %s\n", elem->name); +#endif + } + /* + * STREAM: Children are processed. + */ + child = elem->children; while (child != NULL) { if (child->type == XML_ELEMENT_NODE) { if (child->ns != NULL) @@ -13203,7 +15805,11 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) else nsUri = NULL; ret = xmlRegExecPushString2(ctxt->regexp, - child->name, nsUri, child); + child->name, nsUri, child); + /* + * URGENT TODO: Could we anchor an error report + * here to notify of invalid elements? + */ #ifdef DEBUG_AUTOMATA if (ret < 0) xmlGenericError(xmlGenericErrorContext, @@ -13229,16 +15835,49 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) */ xmlSchemaVComplexTypeErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_2_3, - node, type, + elem, type, "Character content is not allowed, " "because the content type is element-only"); break; } child = child->next; - } + } + /* + * Content model check finalization. + */ + if (type->contModel != NULL) { + ret = xmlRegExecPushString(ctxt->regexp, NULL, NULL); +#ifdef DEBUG_AUTOMATA + xmlGenericError(xmlGenericErrorContext, + "====> %s : %d\n", elem->name, ret); +#endif + if (ret == 0) { + xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, + elem, type, "The element content is not valid", NULL); + } else if (ret < 0) { + xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, + elem, type, "The element content is not valid", NULL); +#ifdef DEBUG_CONTENT + } else { + xmlGenericError(xmlGenericErrorContext, + "Element %s content check succeeded\n", + elem->name); + +#endif + } + xmlRegFreeExecCtxt(ctxt->regexp); + ctxt->regexp = oldregexp; + } + } break; case XML_SCHEMA_CONTENT_SIMPLE: - case XML_SCHEMA_CONTENT_BASIC:{ + case XML_SCHEMA_CONTENT_BASIC: + /* + * If the simple content was already validated + * (e.g. a default value), the content need not + * to be validated again. + */ + if (valSimpleContent == 1) { xmlChar *value = NULL; /* * We hit a complexType with a simpleContent resolving @@ -13251,29 +15890,50 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) * of the element information item is ·valid· with respect * to that simple type definition as defined by String * Valid (§3.14.4). - */ - child = node->children; + */ + /* + * STREAM: Children are processed. + */ + child = elem->children; while (child != NULL) { + /* + * TODO: Could the entity stuff produce elements + * as well? + */ if (child->type == XML_ELEMENT_NODE) { xmlSchemaVComplexTypeErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, - node, type, + elem, type, "Element content is not allowed, because " "the content type is a simple type"); ret = XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2; break; } child = child->next; - } + } + ctxt->node = elem; + ctxt->cur = elem->children; if (ret == 0) { /* * Validate the character content against a simple type. */ - if (ctxt->node == NULL) + /* + * STREAM: Children are processed. + */ + if (elem->children == NULL) value = NULL; else - value = xmlNodeGetContent(node); - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 1, 1, 1); + value = xmlNodeGetContent(elem); + /* + * URGENT TODO: Should facets for the simple type validation be + * disabled, if the derivation of facets for complex types + * is implemented? + */ + /* + * NOTE: This call won't check the correct types of the + * content nodes, since this should be done here. + */ + ret = xmlSchemaValidateSimpleTypeValue(ctxt, type, value, 1, 1, 1, 0); if (ret > 0) { /* * NOTE: Although an error will be reported by @@ -13283,15 +15943,18 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) */ xmlSchemaVComplexTypeErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, - node, type, + elem, type, "The character content is not valid"); ret = XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2; } else if (ret < 0) { - xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, elem, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateComplexType, " "Element '%s': Error while validating character " "content against complex type '%s'.\n", - node->name, type->name); + elem->name, type->name); + if (value != NULL) + xmlFree(value); + ctxt->type = oldtype; return (-1); } } @@ -13300,250 +15963,190 @@ xmlSchemaValidateComplexType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) * Apply facets of the complexType. Be sure to pass the * built-in type to xmlSchemaValidateFacetsInternal. */ - /* TODO: I don't know yet if the facets of the simple type + /* URGENT TODO: I don't know yet if the facets of the simple type * are used, or if the facets, defined by this complex type, * are to be used only. This here applies both facet sets. */ - ret = xmlSchemaValidateFacetsInternal(ctxt, type, - value, 0, 1); + ret = xmlSchemaValidateFacetsInternal(ctxt, + type, value, 0, 1); if (ret > 0) { xmlSchemaVComplexTypeErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2, - node, type, + elem, type, "The character content is not valid"); ret = XML_SCHEMAV_CVC_COMPLEX_TYPE_2_2; } else if (ret < 0) { - xmlSchemaVErr(ctxt, ctxt->cur, XML_SCHEMAV_INTERNAL, + xmlSchemaVErr(ctxt, elem, XML_SCHEMAV_INTERNAL, "Internal error: xmlSchemaValidateComplexType, " "Element '%s': Error while validating character " "content against complex type '%s'; failed to " "apply facets.\n", type->name, NULL); + if (value != NULL) + xmlFree(value); + ctxt->type = oldtype; + return (-1); } } if (value != NULL) xmlFree(value); - /* TODO: facets */ - break; + } + break; default: TODO xmlGenericError(xmlGenericErrorContext, "unimplemented content type %d\n", type->contentType); } - ctxt->cur = node; + ctxt->type = oldtype; return (ctxt->err); } /** - * xmlSchemaValidateContent: + * xmlSchemaValidateElementByType: * @ctxt: a schema validation context * @elem: an element - * @type: the type declaration + * @type: the list of type declarations * - * Validate the content of an element against the type. + * Validation Rule: Element Locally Valid (Type). * * Returns 0 if the element is schemas valid, a positive error code * number otherwise and -1 in case of internal or API error. */ static int -xmlSchemaValidateContent(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr node) +xmlSchemaValidateElementByType(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaTypePtr type, + int valSimpleContent) { - xmlSchemaTypePtr type; + int ret; - type = ctxt->type; - ctxt->cur = node; + + if ((ctxt == NULL) || (type == NULL)) { + xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_INTERNAL, NULL, NULL, + "Internal error: xmlSchemaValidateElementByType, " + "bad arguments", NULL); + return (-1); + } + /* + * This one is called by "xmlSchemaValidateElementByDeclaration". + * It will forward to the proper validation + * procedures for the given type. + */ + if (type == NULL) { + xmlSchemaVComplexTypeErr(ctxt, + XML_SCHEMAV_CVC_TYPE_1, + ctxt->node, NULL, + "The type definition is absent"); + return (XML_SCHEMAV_CVC_TYPE_1); + } + + if (type->flags & XML_SCHEMAS_TYPE_ABSTRACT) { + xmlSchemaVComplexTypeErr(ctxt, + XML_SCHEMAV_CVC_TYPE_2, + ctxt->node, type, + "The type definition is abstract"); + return (XML_SCHEMAV_CVC_TYPE_2); + } switch (type->type) { - case XML_SCHEMA_TYPE_ANY: - xmlSchemaValidateAny(ctxt); - ctxt->type = type; + case XML_SCHEMA_TYPE_COMPLEX: + ret = xmlSchemaValidateElementByComplexType(ctxt, type, + valSimpleContent); break; - case XML_SCHEMA_TYPE_COMPLEX: - xmlSchemaValidateComplexType(ctxt, node); + case XML_SCHEMA_TYPE_SIMPLE: + ret = xmlSchemaValidateElementBySimpleType(ctxt, type, + valSimpleContent); break; - case XML_SCHEMA_TYPE_ELEMENT:{ - xmlSchemaElementPtr decl = (xmlSchemaElementPtr) type; - - /* - * Handle element reference here - */ - /* - * TODO: This should be removed, since checks for - * consistence should not be done during validation. - */ - if (decl->ref != NULL) { - if (decl->refDecl == NULL) { - xmlSchemaVErr(ctxt, node, XML_SCHEMAV_INTERNAL, - "Internal error: element reference %s " - "not resolved\n", decl->ref, NULL); - return (-1); - } - ctxt->type = (xmlSchemaTypePtr) decl->refDecl; - decl = decl->refDecl; - } - /* TODO: Should "xmlSchemaValidateElement" be called instead? */ - xmlSchemaValidateElementType(ctxt, node); - ctxt->type = type; - break; - } - case XML_SCHEMA_TYPE_BASIC: + case XML_SCHEMA_TYPE_BASIC: if (type->builtInType == XML_SCHEMAS_ANYTYPE) - xmlSchemaValidateAnyTypeContent(ctxt, node); + ret = xmlSchemaValidateElementByAnyType(ctxt, type); else - xmlSchemaValidateSimpleTypeElement(ctxt, node); + ret = xmlSchemaValidateElementBySimpleType(ctxt, type, + valSimpleContent); break; - case XML_SCHEMA_TYPE_SIMPLE: - xmlSchemaValidateSimpleTypeElement(ctxt, node); - break; - case XML_SCHEMA_TYPE_FACET: - TODO break; - case XML_SCHEMA_TYPE_SEQUENCE: - TODO break; - case XML_SCHEMA_TYPE_CHOICE: - TODO break; - case XML_SCHEMA_TYPE_ALL: - TODO break; - case XML_SCHEMA_TYPE_SIMPLE_CONTENT: - TODO break; - case XML_SCHEMA_TYPE_COMPLEX_CONTENT: - TODO break; - case XML_SCHEMA_TYPE_UR: - TODO break; - case XML_SCHEMA_TYPE_RESTRICTION: - /*xmlSchemaValidateRestrictionType(ctxt, node); */ - TODO break; - case XML_SCHEMA_TYPE_EXTENSION: - TODO break; - case XML_SCHEMA_TYPE_ATTRIBUTE: - TODO break; - case XML_SCHEMA_TYPE_GROUP: - TODO break; - case XML_SCHEMA_TYPE_NOTATION: - TODO break; - case XML_SCHEMA_TYPE_LIST: - TODO break; - case XML_SCHEMA_TYPE_UNION: - TODO break; - case XML_SCHEMA_FACET_MININCLUSIVE: - TODO break; - case XML_SCHEMA_FACET_MINEXCLUSIVE: - TODO break; - case XML_SCHEMA_FACET_MAXINCLUSIVE: - TODO break; - case XML_SCHEMA_FACET_MAXEXCLUSIVE: - TODO break; - case XML_SCHEMA_FACET_TOTALDIGITS: - TODO break; - case XML_SCHEMA_FACET_FRACTIONDIGITS: - TODO break; - case XML_SCHEMA_FACET_PATTERN: - TODO break; - case XML_SCHEMA_FACET_ENUMERATION: - TODO break; - case XML_SCHEMA_FACET_WHITESPACE: - TODO break; - case XML_SCHEMA_FACET_LENGTH: - TODO break; - case XML_SCHEMA_FACET_MAXLENGTH: - TODO break; - case XML_SCHEMA_FACET_MINLENGTH: - TODO break; - case XML_SCHEMA_TYPE_ATTRIBUTEGROUP: - TODO break; - case XML_SCHEMA_TYPE_ANY_ATTRIBUTE: - TODO break; - } - - if (ctxt->node == NULL) - return (ctxt->err); - ctxt->node = ctxt->node->next; - ctxt->type = type->next; - return (ctxt->err); + default: + ret = -1; + break; + } + if (ret == -1) + return (-1); + else + return (ret); } -/** - * xmlSchemaValidateType: - * @ctxt: a schema validation context - * @elem: an element - * @type: the list of type declarations - * - * Validate the content of an element against the types. - * - * Returns 0 if the element is schemas valid, a positive error code - * number otherwise and -1 in case of internal or API error. - */ + static int -xmlSchemaValidateType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, - xmlSchemaElementPtr elemDecl, xmlSchemaTypePtr type) +xmlSchemaCheckAttrLocallyValid(xmlSchemaValidCtxtPtr ctxt, + xmlSchemaAttributePtr decl, + xmlSchemaAttrStatePtr state, + xmlAttrPtr attr) { - xmlChar *nil; - - if ((elem == NULL) || (type == NULL) || (elemDecl == NULL)) - return (0); - - /* This one is called by "xmlSchemaValidateElementType" and - * "xmlSchemaValidateElement". - */ + xmlChar *value; + const xmlChar *defValue; + xmlSchemaValPtr defVal; + int fixed; + int ret; - /* - * 3.3.4 : 2 - */ - if (elemDecl->flags & XML_SCHEMAS_ELEM_ABSTRACT) { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_CVC_ELT_2, - elem, NULL, - "The element declaration is abstract", NULL); - return (ctxt->err); + if (decl->subtypes == NULL) { + state->state = XML_SCHEMAS_ATTR_TYPE_NOT_RESOLVED; + return (XML_SCHEMAS_ATTR_TYPE_NOT_RESOLVED); } + value = xmlNodeListGetString(attr->doc, attr->children, 1); + ctxt->node = (xmlNodePtr) attr; + ctxt->cur = attr->children; /* - * 3.3.4: 3 - */ - nil = xmlGetNsProp(elem, BAD_CAST "nil", xmlSchemaInstanceNs); - if (elemDecl->flags & XML_SCHEMAS_ELEM_NILLABLE) { - /* 3.3.4: 3.2 */ - if (xmlStrEqual(nil, BAD_CAST "true")) { - if (xmlSchemaHasElemOrCharContent(elem) == 1) { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_CVC_ELT_3_2_1, - /* XML_SCHEMAS_ERR_NOTEMPTY, */ - elem, NULL, - "The 'nilled' element must have no character or element " - "content", NULL); - return (ctxt->err); - } - if ((elemDecl->flags & XML_SCHEMAS_ELEM_FIXED) && - (elemDecl->value != NULL)) { - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_CVC_ELT_3_2_2, - /* XML_SCHEMAS_ERR_HAVEDEFAULT, */ - elem, NULL, - "There is a fixed value constraint defined for " - "the 'nilled' element", NULL); - return (ctxt->err); - } - } - } else { - /* 3.3.4: 3.1 */ - if (nil != NULL) { - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_CVC_ELT_3_1, - /* XML_SCHEMAS_ERR_NOTNILLABLE, */ - elem, NULL, - "The element is not 'nillable'", NULL); - xmlFree(nil); - return (ctxt->err); - } + * NOTE: This call also checks the content nodes for correct type. + */ + ret = xmlSchemaValidateSimpleTypeValue(ctxt, decl->subtypes, + value, 1, 1, 1, 1); + + /* + * Handle 'fixed' attributes. + */ + if (ret > 0) { + state->state = XML_SCHEMAS_ATTR_INVALID_VALUE; + /* + * NOTE: Fixed value constraints will be not + * applied if the value was invalid, because: + * 1. The validation process does not return a precomputed + * value. + * 2. An invalid value implies a violation of a fixed + * value constraint. + */ + } else if (ret == 0) { + state->state = XML_SCHEMAS_ATTR_CHECKED; + if (xmlSchemaGetEffectiveValueConstraint(decl, + &fixed, &defValue, &defVal) && (fixed == 1)) { + /* + * cvc-au : Attribute Locally Valid (Use) + * For an attribute information item to be·valid· + * with respect to an attribute use its ·normalized + * value· must match the canonical lexical representation + * of the attribute use's {value constraint} value, if it + * is present and fixed. + */ + /* + * NOTE: the validation context holds in ctxt->value the + * precomputed value of the attribute; well for some types, + * fallback to string comparison if no computed value + * exists. + */ + if (((ctxt->value != NULL) && + (xmlSchemaCompareValues(ctxt->value, defVal) != 0)) || + ((ctxt->value == NULL) && + (! xmlStrEqual(defValue, BAD_CAST value)))) { + state->state = + XML_SCHEMAS_ATTR_INVALID_FIXED_VALUE; + } + } + } + if (value != NULL) { + xmlFree(value); } - - /* TODO 3.3.4: 4 if the element carries xs:type */ - - ctxt->type = elemDecl->subtypes; - ctxt->node = elem->children; - xmlSchemaValidateContent(ctxt, elem); - return (ctxt->err); + return (ret); } - /** * xmlSchemaValidateAttributes: * @ctxt: a schema validation context @@ -13567,33 +16170,37 @@ xmlSchemaValidateType(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, static int xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSchemaTypePtr type) { + const xmlChar *nsURI; int ret; xmlAttrPtr attr; /* An attribute on the element. */ - xmlChar *value; - const xmlChar *nsURI; - xmlSchemaAttributeLinkPtr attrUse; + const xmlChar *defValue; + xmlSchemaValPtr defVal; + int fixed; + xmlSchemaAttributeLinkPtr attrUse = NULL; xmlSchemaAttributePtr attrDecl; int found; xmlSchemaAttrStatePtr curState, reqAttrStates = NULL, reqAttrStatesTop = NULL; + xmlSchemaAttrStatePtr defAttrStates = NULL, defAttrStatesTop = NULL; + xmlNodePtr oldnode; #ifdef DEBUG_ATTR_VALIDATION int redundant = 0; #endif - /* - * NOTE: This one uses attr->subtypes to get the type decl. - regardless - * if we have an attribute reference or an attribute declaration. - */ + /* * Allow all attributes if the type is anyType. */ if (type == xmlSchemaGetBuiltInType(XML_SCHEMAS_ANYTYPE)) return (0); - attrUse = type->attributeUses; + + oldnode = ctxt->node; + if (type != NULL) + attrUse = type->attributeUses; while (attrUse != NULL) { found = 0; attrDecl = attrUse->attr; #ifdef DEBUG_ATTR_VALIDATION - printf("attr use - name: %s\n", xmlSchemaGetOnymousAttrName(attrDecl)); + printf("attr use - name: %s\n", xmlSchemaGetAttrName(attrDecl)); printf("attr use - use: %d\n", attrDecl->occurs); #endif for (curState = ctxt->attr; curState != NULL; curState = curState->next) { @@ -13602,7 +16209,7 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche #ifdef DEBUG_ATTR_VALIDATION redundant = 1; #endif - } + } attr = curState->attr; #ifdef DEBUG_ATTR_VALIDATION printf("attr - name: %s\n", attr->name); @@ -13654,58 +16261,67 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche #ifdef DEBUG_ATTR_VALIDATION printf("found\n"); #endif - found = 1; - ctxt->cur = (xmlNodePtr) attr; - ctxt->node = attr->children; - - if (attrDecl->subtypes == NULL) { - curState->state = XML_SCHEMAS_ATTR_TYPE_NOT_RESOLVED; - curState->decl = attrDecl; - xmlSchemaVErr(ctxt, (xmlNodePtr) attr, XML_SCHEMAV_INTERNAL, - "Internal error: attribute %s type not resolved\n", - attr->name, NULL); - continue; - } - value = xmlNodeListGetString(elem->doc, attr->children, 1); - ctxt->type = attrDecl->subtypes; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 1, 1, 1); - ctxt->type = type; - if (ret != 0) - curState->state = XML_SCHEMAS_ATTR_INVALID_VALUE; - else - curState->state = XML_SCHEMAS_ATTR_CHECKED; + found = 1; curState->decl = attrDecl; - if (value != NULL) { - xmlFree(value); - } + ret = xmlSchemaCheckAttrLocallyValid(ctxt, attrDecl, curState, attr); } - if ((!found) && (attrDecl->occurs == XML_SCHEMAS_ATTR_USE_REQUIRED)) { - xmlSchemaAttrStatePtr tmp; - + if (!found) { + if (attrDecl->occurs == XML_SCHEMAS_ATTR_USE_REQUIRED) { + xmlSchemaAttrStatePtr tmp; + #ifdef DEBUG_ATTR_VALIDATION - printf("required attr not found\n"); + printf("required attr not found\n"); #endif - /* - * Add a new dummy attribute state. - */ - tmp = (xmlSchemaAttrStatePtr) xmlMalloc(sizeof(xmlSchemaAttrState)); - if (tmp == NULL) { - xmlSchemaVErrMemory(ctxt, "registering required attributes", NULL); - return (-1); - } - tmp->attr = NULL; - tmp->state = XML_SCHEMAS_ATTR_MISSING; - tmp->decl = attrDecl; - tmp->next = NULL; - - if (reqAttrStates == NULL) { - reqAttrStates = tmp; - reqAttrStatesTop = tmp; - } else { - reqAttrStatesTop->next = tmp; - reqAttrStatesTop = tmp; - } - + /* + * Add a new dummy attribute state. + */ + tmp = (xmlSchemaAttrStatePtr) xmlMalloc(sizeof(xmlSchemaAttrState)); + if (tmp == NULL) { + xmlSchemaVErrMemory(ctxt, "registering required attributes", NULL); + ctxt->node = oldnode; + return (-1); + } + tmp->attr = NULL; + tmp->state = XML_SCHEMAS_ATTR_MISSING; + tmp->decl = attrDecl; + tmp->next = NULL; + + if (reqAttrStates == NULL) { + reqAttrStates = tmp; + reqAttrStatesTop = tmp; + } else { + reqAttrStatesTop->next = tmp; + reqAttrStatesTop = tmp; + } + } else if ((attrDecl->occurs == XML_SCHEMAS_ATTR_USE_OPTIONAL) && + (xmlSchemaGetEffectiveValueConstraint(attrDecl, + &fixed, &defValue, &defVal))) { + xmlSchemaAttrStatePtr tmp; + /* + * Handle non existent default/fixed attributes. + */ + tmp = (xmlSchemaAttrStatePtr) + xmlMalloc(sizeof(xmlSchemaAttrState)); + if (tmp == NULL) { + xmlSchemaVErrMemory(ctxt, + "registering schema specified attributes", NULL); + ctxt->node = oldnode; + return (-1); + } + tmp->attr = NULL; + tmp->state = XML_SCHEMAS_ATTR_DEFAULT; + tmp->decl = attrDecl; + tmp->value = defValue; + tmp->next = NULL; + + if (defAttrStates == NULL) { + defAttrStates = tmp; + defAttrStates = tmp; + } else { + defAttrStates->next = tmp; + defAttrStatesTop = tmp; + } + } } attrUse = attrUse->next; } @@ -13723,7 +16339,8 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche /* * Process wildcards. */ - if (type->attributeWildcard != NULL) { + + if ((type != NULL) && (type->attributeWildcard != NULL)) { #ifdef DEBUG_ATTR_VALIDATION xmlSchemaWildcardNsPtr ns; printf("matching wildcard: [%d] of complexType: %s\n", type->attributeWildcard, type->name); @@ -13777,23 +16394,11 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche attr = curState->attr; attrDecl = xmlSchemaGetAttribute(ctxt->schema, - attr->name, nsURI); + attr->name, nsURI); + curState->decl = attrDecl; if (attrDecl != NULL) { - value = xmlNodeListGetString(elem->doc, attr->children, 1); - ctxt->cur = (xmlNodePtr) attr; - ctxt->node = attr->children; - ctxt->type = attrDecl->subtypes; - ret = xmlSchemaValidateSimpleTypeValue(ctxt, value, 1, 1, 1); - ctxt->type = type; - if (ret != 0) - curState->state = XML_SCHEMAS_ATTR_INVALID_VALUE; - else - curState->state = XML_SCHEMAS_ATTR_CHECKED; curState->decl = attrDecl; - if (value != NULL) { - xmlFree(value); - } - + ret = xmlSchemaCheckAttrLocallyValid(ctxt, attrDecl, curState, attr); } else if (type->attributeWildcard->processContents == XML_SCHEMAS_ANY_LAX) { curState->state = XML_SCHEMAS_ATTR_CHECKED; @@ -13805,21 +16410,48 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche curState = curState->next; } } + /* * Report missing and illegal attributes. */ if (ctxt->attr != NULL) { curState = ctxt->attr; - while ((curState != NULL) && (curState != ctxt->attrTop->next)) { + while ((curState != NULL) && (curState != ctxt->attrTop->next)) { if (curState->state != XML_SCHEMAS_ATTR_CHECKED) { attr = curState->attr; - if (curState->state == XML_SCHEMAS_ATTR_MISSING) - xmlSchemaVMissingAttrErr(ctxt, elem, curState->decl); - else if (curState->state == XML_SCHEMAS_ATTR_UNKNOWN) { + if (curState->decl != NULL) { + if (curState->decl->ref != NULL) + attrDecl = curState->decl->refDecl; + else + attrDecl = curState->decl; + } else + attrDecl = NULL; + if (curState->state == XML_SCHEMAS_ATTR_MISSING) { + xmlSchemaVMissingAttrErr(ctxt, elem, attrDecl); + } else if (curState->state == + XML_SCHEMAS_ATTR_TYPE_NOT_RESOLVED) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ATTRIBUTE_2, + (xmlNodePtr) attr, + (xmlSchemaTypePtr) attrDecl, + "The type definition is absent", + NULL); + } else if (curState->state == + XML_SCHEMAS_ATTR_INVALID_FIXED_VALUE) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_AU, + (xmlNodePtr) attr, (xmlSchemaTypePtr) attrDecl, + "The value does not match the fixed value " + "constraint", NULL); + } else if (curState->state == XML_SCHEMAS_ATTR_UNKNOWN) { /* TODO: "prohibited" won't ever be touched here!. (curState->state == XML_SCHEMAS_ATTR_PROHIBITED)) */ - if (type->attributeWildcard == NULL) { + /* + * TODO: One might report different error messages + * for the following errors. + */ + if ((type == NULL) || (type->attributeWildcard == NULL)) { xmlSchemaVIllegalAttrErr(ctxt, XML_SCHEMAV_CVC_COMPLEX_TYPE_3_2_1, attr); } else { @@ -13830,13 +16462,82 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche } curState = curState->next; } + } + + /* + * Add missing default/fixed attributes. + */ + if (ctxt->options & XML_SCHEMA_VAL_VC_I_CREATE) { + curState = defAttrStates; + while (curState != NULL) { + attrDecl = curState->decl; + if (attrDecl->ref != NULL) + attrDecl = attrDecl->refDecl; + /* + * PSVI: Add a new attribute node to the current element. + */ + if (attrDecl->targetNamespace == NULL) { + xmlNewProp(elem, attrDecl->name, curState->value); + } else { + xmlNsPtr ns; + + ns = xmlSearchNsByHref(elem->doc, elem, + attrDecl->targetNamespace); + if (ns == NULL) { + xmlChar prefix[12]; + int counter = 1; + + attr = curState->attr; + /* + * Create a namespace declaration on the validation + * root node if no namespace declaration is in scope. + */ + snprintf((char *) prefix, sizeof(prefix), "p"); + /* + * This is somehow not performant, since the ancestor + * axis beyond @elem will be searched as well. + */ + ns = xmlSearchNs(elem->doc, elem, BAD_CAST prefix); + while (ns != NULL) { + if (counter > 1000) { + xmlSchemaVErr(ctxt, (xmlNodePtr) attr, + XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaValidateAttributes, " + "could not compute a ns prefix for " + "default/fixed attribute '%s'.\n", + attrDecl->name, NULL); + + break; + } + snprintf((char *) prefix, + sizeof(prefix), "p%d", counter++); + ns = xmlSearchNs(elem->doc, elem, + BAD_CAST prefix); + } + if (ns == NULL) { + ns = xmlNewNs(ctxt->validationRoot, + attrDecl->targetNamespace, BAD_CAST prefix); + xmlNewNsProp(elem, ns, attrDecl->name, + curState->value); + } + } else { + xmlNewNsProp(elem, ns, attrDecl->name, + curState->value); + } + } + curState = curState->next; + } } + if (defAttrStates != NULL) + xmlSchemaFreeAttributeStates(defAttrStates); + #ifdef DEBUG_ATTR_VALIDATION if (redundant) xmlGenericError(xmlGenericErrorContext, "xmlSchemaValidateAttributes: redundant call by type: %s\n", type->name); #endif + ctxt->node = oldnode; return (ctxt->err); } @@ -13851,99 +16552,125 @@ xmlSchemaValidateAttributes(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem, xmlSche * number otherwise and -1 in case of internal or API error. */ static int -xmlSchemaValidateElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem) +xmlSchemaValidateElement(xmlSchemaValidCtxtPtr ctxt) { - xmlSchemaElementPtr elemDecl; - int ret; - xmlSchemaAttrStatePtr attrs, attrTop; + xmlSchemaElementPtr elemDecl; + int ret = 0; - if (elem->ns != NULL) { - elemDecl = xmlHashLookup3(ctxt->schema->elemDecl, - elem->name, elem->ns->href, NULL); - } else { - elemDecl = xmlHashLookup3(ctxt->schema->elemDecl, - elem->name, NULL, NULL); - } /* - * This one is called by xmlSchemaValidateDocument and - * xmlSchemaValidateAnyInernal. + * This one is called by xmlSchemaValidateDocument and + * xmlSchemaValidateOneElement. + */ + if (ctxt->schema == NULL) { + /* + * No schema was specified at time of creation of the validation + * context. Use xsi:schemaLocation and xsi:noNamespaceSchemaLocation + * of the instance to build a schema. + */ + if (ctxt->pctxt == NULL) + ctxt->pctxt = xmlSchemaNewParserCtxt("*"); + if (ctxt->pctxt == NULL) + return (-1); + ctxt->schema = xmlSchemaNewSchema(ctxt->pctxt); + if (ctxt->schema == NULL) + return (-1); + /* TODO: assign user data. */ + ctxt->pctxt->error = ctxt->error; + ctxt->pctxt->warning = ctxt->warning; + ctxt->xsiAssemble = 1; + } else + ctxt->xsiAssemble = 0; + /* ctxt->options |= XML_SCHEMA_VAL_VC_I_CREATE; + * ctxt->xsiAssemble = 1; */ - /* - * 3.3.4 : 1 - */ - if (elemDecl == NULL) { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_CVC_ELT_1, - /* XML_SCHEMAS_ERR_UNDECLAREDELEM, */ - elem, NULL, - "Global declaration is absent", NULL); - return (ctxt->err); + * Assemble new schemata using xsi. + */ + if (ctxt->xsiAssemble) { + ret = xmlSchemaAssembleByXSIElem(ctxt, ctxt->node); + if (ret == -1) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, + ctxt->node, NULL, + "Internal error: xmlSchemaValidateElement, " + "assembling schema by xsi", NULL); + } + /* + * NOTE: We won't react on schema parser errors here. + * TODO: But a warning would be nice. + */ } - /* TODO: This should be already catched at the schema parsing level. */ - if (elemDecl->subtypes == NULL) { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_INTERNAL, - /* XML_SCHEMAS_ERR_NOTYPE */ - elem, NULL, - "The element declaration has no type assigned", NULL); - return (ctxt->err); + if (ret != -1) { + if (ctxt->node->ns != NULL) + elemDecl = xmlSchemaGetElem(ctxt->schema, ctxt->node->name, + ctxt->node->ns->href); + else + elemDecl = xmlSchemaGetElem(ctxt->schema, ctxt->node->name, NULL); + + if (elemDecl == NULL) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_CVC_ELT_1, + ctxt->node, NULL, + "No matching global declaration available", NULL); + ret = XML_SCHEMAV_CVC_ELT_1; + } else { + ret = xmlSchemaValidateElementByDeclaration(ctxt, elemDecl); + if (ret < 0) { + xmlSchemaVCustomErr(ctxt, + XML_SCHEMAV_INTERNAL, ctxt->node, NULL, + "Internal error: xmlSchemaValidateElement, " + "calling validation by declaration", NULL); + } + } } - /* - * Verify the attributes - */ - attrs = ctxt->attr; - attrTop = ctxt->attrTop; - xmlSchemaRegisterAttributes(ctxt, elem->properties); - xmlSchemaValidateAttributes(ctxt, elem, elemDecl->subtypes); - if (ctxt->attr != NULL) - xmlSchemaFreeAttributeStates(ctxt->attr); - ctxt->attr = attrs; - ctxt->attrTop = attrTop; - /* - * Verify the element content recursively - */ - if (elemDecl->contModel != NULL) { - ctxt->regexp = xmlRegNewExecCtxt(elemDecl->contModel, - (xmlRegExecCallbacks) - xmlSchemaValidateCallback, ctxt); -#ifdef DEBUG_AUTOMATA - xmlGenericError(xmlGenericErrorContext, "====> %s\n", elem->name); -#endif + /* ctxt->xsiAssemble = 0; */ + if (ctxt->xsiAssemble) { + if (ctxt->schema != NULL) { + xmlSchemaFree(ctxt->schema); + ctxt->schema = NULL; + } } - xmlSchemaValidateType(ctxt, elem, elemDecl, elemDecl->subtypes); - if (elemDecl->contModel != NULL) { - ret = xmlRegExecPushString(ctxt->regexp, NULL, NULL); -#ifdef DEBUG_AUTOMATA - xmlGenericError(xmlGenericErrorContext, - "====> %s : %d\n", elem->name, ret); -#endif - if (ret == 0) { - /* TODO: error code. */ - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, - elem, elemDecl->subtypes, - "The element content is not valid", NULL); - } else if (ret < 0) { - xmlSchemaVCustomErr(ctxt, XML_SCHEMAV_ELEMENT_CONTENT, - elem, elemDecl->subtypes, - "The element content is not valid", NULL); -#ifdef DEBUG_CONTENT - else { - xmlGenericError(xmlGenericErrorContext, - "Element %s content check succeeded\n", - elem->name); + return (ret); +} -#endif - } - xmlRegFreeExecCtxt(ctxt->regexp); + +/** + * xmlSchemaValidateOneElement: + * @ctxt: a schema validation context + * @elem: an element node + * + * Validate a branch of a tree, starting with the given @elem. + * + * Returns 0 if the element and its subtree is valid, a positive error + * code number otherwise and -1 in case of an internal or API error. + */ +int +xmlSchemaValidateOneElement(xmlSchemaValidCtxtPtr ctxt, xmlNodePtr elem) +{ + if ((ctxt == NULL) || (elem == NULL) || (elem->type != XML_ELEMENT_NODE)) + return (-1); + + if (ctxt->schema == NULL) { + xmlSchemaVErr(ctxt, NULL, + XML_SCHEMAV_INTERNAL, + "API error: xmlSchemaValidateOneElement, " + "no schema specified.\n", NULL, NULL); + return (-1); } - return (ctxt->err); + + ctxt->doc = elem->doc; + ctxt->err = 0; + ctxt->nberrors = 0; + ctxt->node = elem; + ctxt->validationRoot = elem; + return (xmlSchemaValidateElement(ctxt)); } /** * xmlSchemaValidateDocument: * @ctxt: a schema validation context * @doc: a parsed document tree + * @xsiAssemble: should schemata be added if requested by the instance? * * Validate a document tree in memory. * @@ -13954,7 +16681,6 @@ static int xmlSchemaValidateDocument(xmlSchemaValidCtxtPtr ctxt, xmlDocPtr doc) { xmlNodePtr root; - xmlSchemaElementPtr elemDecl; root = xmlDocGetRootElement(doc); if (root == NULL) { @@ -13963,31 +16689,14 @@ xmlSchemaValidateDocument(xmlSchemaValidCtxtPtr ctxt, xmlDocPtr doc) (xmlNodePtr) doc, NULL, "The document has no document element", NULL); return (ctxt->err); - } - - if (root->ns != NULL) - elemDecl = xmlSchemaGetElem(ctxt->schema, root->name, root->ns->href); - else - elemDecl = xmlSchemaGetElem(ctxt->schema, root->name, NULL); - if (elemDecl == NULL) { - xmlSchemaVCustomErr(ctxt, - XML_SCHEMAV_CVC_ELT_1, - root, NULL, - /* XML_SCHEMAS_ERR_UNDECLAREDELEM, */ - "Global declaration is absent", NULL); - } - /* - * Removed, since xmlSchemaGetElem will return global declarations only. - * - else if ((elemDecl->flags & XML_SCHEMAS_ELEM_GLOBAL) == 0) { - xmlSchemaVErr(ctxt, root, XML_SCHEMAS_ERR_NOTTOPLEVEL, - "Root element %s not global\n", root->name, NULL); - } - */ + } + /* ctxt->options |= XML_SCHEMA_VAL_XSI_ASSEMBLE; */ /* * Okay, start the recursive validation */ - xmlSchemaValidateElement(ctxt, root); + ctxt->node = root; + ctxt->validationRoot = root; + xmlSchemaValidateElement(ctxt); return (ctxt->err); } @@ -14044,6 +16753,9 @@ xmlSchemaFreeValidCtxt(xmlSchemaValidCtxtPtr ctxt) xmlSchemaFreeAttributeStates(ctxt->attr); if (ctxt->value != NULL) xmlSchemaFreeValue(ctxt->value); + if (ctxt->pctxt != NULL) { + xmlSchemaFreeParserCtxt(ctxt->pctxt); + } xmlFree(ctxt); } @@ -14066,6 +16778,8 @@ xmlSchemaSetValidErrors(xmlSchemaValidCtxtPtr ctxt, ctxt->error = err; ctxt->warning = warn; ctxt->userData = ctx; + if (ctxt->pctxt != NULL) + xmlSchemaSetParserErrors(ctxt->pctxt, err, warn, ctx); } /** @@ -14095,6 +16809,62 @@ xmlSchemaGetValidErrors(xmlSchemaValidCtxtPtr ctxt, return (0); } + +/** + * xmlSchemaValidCtxtSetOptions: + * @ctxt: a schema validation context + * @options: a combination of xmlSchemaValidOption + * + * Sets the options to be used during the validation. + * + * Returns 0 in case of success, -1 in case of an + * API error. + */ +int +xmlSchemaSetValidOptions(xmlSchemaValidCtxtPtr ctxt, + int options) + +{ + int i; + + if (ctxt == NULL) + return (-1); + /* + * WARNING: Change the start value if adding to the + * xmlSchemaValidOption. + * TODO: Is there an other, more easy to maintain, + * way? + */ + for (i = 1; i < (int) sizeof(int) * 8; i++) { + if (options & 1<<i) { + xmlSchemaVErr(ctxt, NULL, + XML_SCHEMAV_INTERNAL, + "Internal error: xmlSchemaSetValidOptions, " + "invalid option argument.\n", NULL, NULL); + return (-1); + } + } + ctxt->options = options; + return (0); +} + +/** + * xmlSchemaGetValidOptions: + * @ctxt: a schema validation context + * + * Returns the option combination of the validation context. + */ +int +xmlSchemaValidCtxtGetOptions(xmlSchemaValidCtxtPtr ctxt) + +{ + if (ctxt == NULL) + return (-1); + else + return (ctxt->options); +} + + /** * xmlSchemaValidateDoc: * @ctxt: a schema validation context @@ -14115,8 +16885,19 @@ xmlSchemaValidateDoc(xmlSchemaValidCtxtPtr ctxt, xmlDocPtr doc) ctxt->doc = doc; ctxt->err = 0; - ctxt->nberrors = 0; + ctxt->nberrors = 0; + /* + if (ctxt->schema == NULL) { + xmlSchemaVErr(ctxt, NULL, + XML_SCHEMAV_INTERNAL, + "API error: xmlSchemaValidateDoc, " + "no schema specified and assembling of schemata " + "using xsi:schemaLocation and xsi:noNamespaceSchemaLocation " + "is not enabled.\n", NULL, NULL); + return (-1); + } + */ ret = xmlSchemaValidateDocument(ctxt, doc); return (ret); } diff --git a/xmlschemastypes.c b/xmlschemastypes.c index 9ebcfd9..c5a0342 100644 --- a/xmlschemastypes.c +++ b/xmlschemastypes.c @@ -529,7 +529,7 @@ xmlSchemaIsBuiltInTypeFacet(xmlSchemaTypePtr type, int facetType) else return (0); default: - return (0); + break; } return (0); } @@ -3128,17 +3128,21 @@ static long _xmlSchemaDateCastYMToDays (const xmlSchemaValPtr dt) { long ret; + int mon; + + mon = dt->value.date.mon; + if (mon <= 0) mon = 1; /* normalization */ - if (dt->value.date.year < 0) + if (dt->value.date.year <= 0) ret = (dt->value.date.year * 365) + (((dt->value.date.year+1)/4)-((dt->value.date.year+1)/100)+ ((dt->value.date.year+1)/400)) + - DAY_IN_YEAR(0, dt->value.date.mon, dt->value.date.year); + DAY_IN_YEAR(0, mon, dt->value.date.year); else ret = ((dt->value.date.year-1) * 365) + (((dt->value.date.year-1)/4)-((dt->value.date.year-1)/100)+ ((dt->value.date.year-1)/400)) + - DAY_IN_YEAR(0, dt->value.date.mon, dt->value.date.year); + DAY_IN_YEAR(0, mon, dt->value.date.year); return ret; } diff --git a/xmlstring.c b/xmlstring.c index 5f239df..65385fb 100644 --- a/xmlstring.c +++ b/xmlstring.c @@ -681,12 +681,14 @@ xmlUTF8Strlen(const xmlChar *utf) { /** * xmlGetUTF8Char: * @utf: a sequence of UTF-8 encoded bytes - * @len: a pointer to @bytes len + * @len: a pointer to the minimum number of bytes present in + * the sequence. This is used to assure the next character + * is completely contained within the sequence. * - * Read one UTF8 Char from @utf + * Read the first UTF8 character from @utf * - * Returns the char value or -1 in case of error, and updates *len with the - * number of bytes consumed + * Returns the char value or -1 in case of error, and sets *len to + * the actual number of bytes consumed (0 in case of error) */ int xmlGetUTF8Char(const unsigned char *utf, int *len) { @@ -773,7 +775,7 @@ xmlCheckUTF8(const unsigned char *utf) * 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx valid 4-byte */ for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */ - if (c & 0x80) { /* 1-byte code, starts with 10 */ + if ((c & 0x80) == 0x00) { /* 1-byte code, starts with 10 */ ix++; } else if ((c & 0xe0) == 0xc0) {/* 2-byte code, starts with 110 */ if ((utf[ix+1] & 0xc0 ) != 0x80) diff --git a/xmlwriter.c b/xmlwriter.c index e7d4cc8..5a7120d 100644 --- a/xmlwriter.c +++ b/xmlwriter.c @@ -1372,7 +1372,12 @@ xmlOutputBufferWriteBase64(xmlOutputBufferPtr out, int len, const unsigned char *data) { static unsigned char dtable[64] = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + {'A','B','C','D','E','F','G','H','I','J','K','L','M', + 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z', + 'a','b','c','d','e','f','g','h','i','j','k','l','m', + 'n','o','p','q','r','s','t','u','v','w','x','y','z', + '0','1','2','3','4','5','6','7','8','9','+','/'}; + int i; int linelen; int count; @@ -1487,7 +1492,8 @@ xmlTextWriterWriteBase64(xmlTextWriterPtr writer, const char *data, * Write hqx encoded data to an xmlOutputBuffer. * ::todo * - * Returns the bytes written (may be 0 because of buffering) or -1 in case of error + * Returns the bytes written (may be 0 because of buffering) + * or -1 in case of error */ static int xmlOutputBufferWriteBinHex(xmlOutputBufferPtr out, @@ -1495,7 +1501,8 @@ xmlOutputBufferWriteBinHex(xmlOutputBufferPtr out, { int count; int sum; - static char hex[] = "0123456789ABCDEF"; + static char hex[16] = + {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; int i; if ((out == NULL) || ((data == 0) && (len != 0))) { @@ -1115,15 +1115,17 @@ extern int valuePush(xmlXPathParserContextPtr ctxt, xmlXPathObjectPtr value) { if (ctxt->valueNr >= ctxt->valueMax) { - ctxt->valueMax *= 2; - ctxt->valueTab = - (xmlXPathObjectPtr *) xmlRealloc(ctxt->valueTab, - ctxt->valueMax * + xmlXPathObjectPtr *tmp; + + tmp = (xmlXPathObjectPtr *) xmlRealloc(ctxt->valueTab, + 2 * ctxt->valueMax * sizeof(ctxt->valueTab[0])); - if (ctxt->valueTab == NULL) { + if (tmp == NULL) { xmlGenericError(xmlGenericErrorContext, "realloc failed !\n"); return (0); } + ctxt->valueMax *= 2; + ctxt->valueTab = tmp; } ctxt->valueTab[ctxt->valueNr] = value; ctxt->value = value; diff --git a/xstc/Makefile.am b/xstc/Makefile.am new file mode 100644 index 0000000..45309ff --- /dev/null +++ b/xstc/Makefile.am @@ -0,0 +1,97 @@ +# +# Definition for the tests from W3C +# +PYSCRIPTS=nist-test.py ms-test.py sun-test.py +TESTDIRS=msxsdtest nisttest suntest +TARBALL=XSTC-20020116.tar.gz +TARBALLURL=http://www.w3.org/2001/05/xmlschema-test-collection/$(TARBALL) + +# +# The local data and scripts +# +EXTRA_DIST=xstc.py sun-test-def.xml ms-test-def.xml nist-test-def.xml \ + xstc-to-python.xsl + +# +# Nothing is done by make, only make tests and +# only if Python and Schemas are enabled. +# +all: + +# +# The python tests are generated via XSLT +# +nist-test.py: nist-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/nist-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +ms-test.py: ms-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/ms-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +sun-test.py: sun-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/sun-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +# +# Rule to load the test description and extract the informations +# +$(TESTDIRS): + -@(if [ ! -f $(TARBALL) ] ; then \ + echo "Missing the test suite description, trying to fetch it" ;\ + if [ -x /usr/bin/wget ] ; then \ + wget $(TARBALLURL) ; \ + else echo "Dont' know how to fetch $(TARBALLURL)" ; fi ; fi) + -@(if [ -f $(TARBALL) ] ; then \ + echo -n "extracting tests directories..." ; \ + $(TAR) -xzf $(TARBALL) $(TESTDIRS) ; \ + echo "done" ; \ + fi); + +# +# The actual test run if present. PYTHONPATH is updated to make sure +# we run the version from the loacl build and not preinstalled bindings +# +pytests: $(PYSCRIPTS) $(TESTDIRS) + -@(if [ -x nist-test.py -a -d nisttest ] ; then \ + echo "## Running NIST Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) nist-test.py -s -b $(srcdir) ; fi) + -@(if [ -x sun-test.py -a -d suntest ] ; then \ + echo "## Running Sun Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) sun-test.py -s -b $(srcdir) ; fi) + -@(if [ -x ms-test.py -a -d msxsdtest ] ; then \ + echo "## Running Microsoft Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) ms-test.py -s -b $(srcdir) ; fi) + +tests: + -@(if [ -x $(PYTHON) ] ; then \ + $(MAKE) MAKEFLAGS+=--silent pytests ; fi); + +# +# Heavy, works well only on RHEL3 +# +valgrind: + -@(if [ -x $(PYTHON) ] ; then \ + echo '## Running the regression tests under Valgrind' ; \ + $(MAKE) CHECKER='valgrind -q' MAKEFLAGS+=--silent pytests ; fi); + +clean: + rm -f $(PYSCRIPTS) test.log + +distclean: + rm -rf $(PYSCRIPTS) $(TESTDIRS) test.log diff --git a/xstc/Makefile.in b/xstc/Makefile.in new file mode 100644 index 0000000..1a5f88a --- /dev/null +++ b/xstc/Makefile.in @@ -0,0 +1,507 @@ +# Makefile.in generated by automake 1.8.2 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = .. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +host_triplet = @host@ +subdir = xstc +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +C14N_OBJ = @C14N_OBJ@ +CATALOG_OBJ = @CATALOG_OBJ@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@ +CYGWIN_EXTRA_PYTHON_LIBADD = @CYGWIN_EXTRA_PYTHON_LIBADD@ +DEBUG_OBJ = @DEBUG_OBJ@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCB_OBJ = @DOCB_OBJ@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +FTP_OBJ = @FTP_OBJ@ +HAVE_ISINF = @HAVE_ISINF@ +HAVE_ISNAN = @HAVE_ISNAN@ +HTML_DIR = @HTML_DIR@ +HTML_OBJ = @HTML_OBJ@ +HTTP_OBJ = @HTTP_OBJ@ +ICONV_LIBS = @ICONV_LIBS@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@ +LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@ +LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@ +LIBXML_VERSION = @LIBXML_VERSION@ +LIBXML_VERSION_EXTRA = @LIBXML_VERSION_EXTRA@ +LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@ +LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MV = @MV@ +M_LIBS = @M_LIBS@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PATTERN_TEST = @PATTERN_TEST@ +PERL = @PERL@ +PYTHON = @PYTHON@ +PYTHON_INCLUDES = @PYTHON_INCLUDES@ +PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@ +PYTHON_SUBDIR = @PYTHON_SUBDIR@ +PYTHON_TESTS = @PYTHON_TESTS@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RDL_LIBS = @RDL_LIBS@ +READER_TEST = @READER_TEST@ +RELDATE = @RELDATE@ +RM = @RM@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STATIC_BINARIES = @STATIC_BINARIES@ +STRIP = @STRIP@ +TAR = @TAR@ +TEST_C14N = @TEST_C14N@ +TEST_CATALOG = @TEST_CATALOG@ +TEST_DEBUG = @TEST_DEBUG@ +TEST_HTML = @TEST_HTML@ +TEST_PHTML = @TEST_PHTML@ +TEST_PUSH = @TEST_PUSH@ +TEST_REGEXPS = @TEST_REGEXPS@ +TEST_SAX = @TEST_SAX@ +TEST_SCHEMAS = @TEST_SCHEMAS@ +TEST_THREADS = @TEST_THREADS@ +TEST_VALID = @TEST_VALID@ +TEST_VTIME = @TEST_VTIME@ +TEST_XINCLUDE = @TEST_XINCLUDE@ +TEST_XPATH = @TEST_XPATH@ +TEST_XPTR = @TEST_XPTR@ +THREADS_W32 = @THREADS_W32@ +THREAD_CFLAGS = @THREAD_CFLAGS@ +THREAD_LIBS = @THREAD_LIBS@ +U = @U@ +VERSION = @VERSION@ +WIN32_EXTRA_LDFLAGS = @WIN32_EXTRA_LDFLAGS@ +WIN32_EXTRA_LIBADD = @WIN32_EXTRA_LIBADD@ +WITH_C14N = @WITH_C14N@ +WITH_CATALOG = @WITH_CATALOG@ +WITH_DEBUG = @WITH_DEBUG@ +WITH_DOCB = @WITH_DOCB@ +WITH_FTP = @WITH_FTP@ +WITH_HTML = @WITH_HTML@ +WITH_HTTP = @WITH_HTTP@ +WITH_ICONV = @WITH_ICONV@ +WITH_ISO8859X = @WITH_ISO8859X@ +WITH_LEGACY = @WITH_LEGACY@ +WITH_MEM_DEBUG = @WITH_MEM_DEBUG@ +WITH_OUTPUT = @WITH_OUTPUT@ +WITH_PATTERN = @WITH_PATTERN@ +WITH_PUSH = @WITH_PUSH@ +WITH_PYTHON_FALSE = @WITH_PYTHON_FALSE@ +WITH_PYTHON_TRUE = @WITH_PYTHON_TRUE@ +WITH_READER = @WITH_READER@ +WITH_REGEXPS = @WITH_REGEXPS@ +WITH_SAX1 = @WITH_SAX1@ +WITH_SCHEMAS = @WITH_SCHEMAS@ +WITH_THREADS = @WITH_THREADS@ +WITH_TREE = @WITH_TREE@ +WITH_TRIO = @WITH_TRIO@ +WITH_TRIO_SOURCES_FALSE = @WITH_TRIO_SOURCES_FALSE@ +WITH_TRIO_SOURCES_TRUE = @WITH_TRIO_SOURCES_TRUE@ +WITH_VALID = @WITH_VALID@ +WITH_WRITER = @WITH_WRITER@ +WITH_XINCLUDE = @WITH_XINCLUDE@ +WITH_XPATH = @WITH_XPATH@ +WITH_XPTR = @WITH_XPTR@ +XINCLUDE_OBJ = @XINCLUDE_OBJ@ +XMLLINT = @XMLLINT@ +XML_CFLAGS = @XML_CFLAGS@ +XML_INCLUDEDIR = @XML_INCLUDEDIR@ +XML_LIBDIR = @XML_LIBDIR@ +XML_LIBS = @XML_LIBS@ +XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@ +XPATH_OBJ = @XPATH_OBJ@ +XPTR_OBJ = @XPTR_OBJ@ +XSLTPROC = @XSLTPROC@ +Z_CFLAGS = @Z_CFLAGS@ +Z_LIBS = @Z_LIBS@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_AS = @ac_ct_AS@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ +ac_ct_RANLIB = @ac_ct_RANLIB@ +ac_ct_STRIP = @ac_ct_STRIP@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +pythondir = @pythondir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ + +# +# Definition for the tests from W3C +# +PYSCRIPTS = nist-test.py ms-test.py sun-test.py +TESTDIRS = msxsdtest nisttest suntest +TARBALL = XSTC-20020116.tar.gz +TARBALLURL = http://www.w3.org/2001/05/xmlschema-test-collection/$(TARBALL) + +# +# The local data and scripts +# +EXTRA_DIST = xstc.py sun-test-def.xml ms-test-def.xml nist-test-def.xml \ + xstc-to-python.xsl + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu xstc/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu xstc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean-am: clean-am distclean-generic distclean-libtool + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am + + +# +# Nothing is done by make, only make tests and +# only if Python and Schemas are enabled. +# +all: + +# +# The python tests are generated via XSLT +# +nist-test.py: nist-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/nist-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +ms-test.py: ms-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/ms-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +sun-test.py: sun-test-def.xml xstc-to-python.xsl + -@(if [ -x $(XSLTPROC) ] ; then \ + echo "Rebuilding script" $@ ; \ + $(XSLTPROC) --nonet $(srcdir)/xstc-to-python.xsl \ + $(srcdir)/sun-test-def.xml > $@ ; \ + chmod +x $@ ; fi ) + +# +# Rule to load the test description and extract the informations +# +$(TESTDIRS): + -@(if [ ! -f $(TARBALL) ] ; then \ + echo "Missing the test suite description, trying to fetch it" ;\ + if [ -x /usr/bin/wget ] ; then \ + wget $(TARBALLURL) ; \ + else echo "Dont' know how to fetch $(TARBALLURL)" ; fi ; fi) + -@(if [ -f $(TARBALL) ] ; then \ + echo -n "extracting tests directories..." ; \ + $(TAR) -xzf $(TARBALL) $(TESTDIRS) ; \ + echo "done" ; \ + fi); + +# +# The actual test run if present. PYTHONPATH is updated to make sure +# we run the version from the loacl build and not preinstalled bindings +# +pytests: $(PYSCRIPTS) $(TESTDIRS) + -@(if [ -x nist-test.py -a -d nisttest ] ; then \ + echo "## Running NIST Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) nist-test.py -s -b $(srcdir) ; fi) + -@(if [ -x sun-test.py -a -d suntest ] ; then \ + echo "## Running Sun Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) sun-test.py -s -b $(srcdir) ; fi) + -@(if [ -x ms-test.py -a -d msxsdtest ] ; then \ + echo "## Running Microsoft Schemas tests"; \ + PYTHONPATH="$$PYTHONPATH:../python:../python/.libs:..:../libs" ;\ + export PYTHONPATH; \ + $(CHECKER) $(PYTHON) ms-test.py -s -b $(srcdir) ; fi) + +tests: + -@(if [ -x $(PYTHON) ] ; then \ + $(MAKE) MAKEFLAGS+=--silent pytests ; fi); + +# +# Heavy, works well only on RHEL3 +# +valgrind: + -@(if [ -x $(PYTHON) ] ; then \ + echo '## Running the regression tests under Valgrind' ; \ + $(MAKE) CHECKER='valgrind -q' MAKEFLAGS+=--silent pytests ; fi); + +clean: + rm -f $(PYSCRIPTS) test.log + +distclean: + rm -rf $(PYSCRIPTS) $(TESTDIRS) test.log +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/xstc/ms-test-def.xml b/xstc/ms-test-def.xml new file mode 100644 index 0000000..9f4dec2 --- /dev/null +++ b/xstc/ms-test-def.xml @@ -0,0 +1,30683 @@ +<?xml version="1.0"?> +<tests> + <test id="attA001" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'qualified' at top level</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA002" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'unqualified' at top level</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA003" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA004" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = ''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA005" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'Qualified'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA006" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'Unqualified'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attA007" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'qualified'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attA008" origin="Microsoft"> + <description>Test attribute declaration with optional attribute form = 'unqualified'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attA008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attB001" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = 'a'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attB002" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = 'very long id > 1000 chars'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attB003" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = 'all valid chars'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attB004" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attB005" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attB006" origin="Microsoft"> + <description>Test attribute declaration with optional attribute id = '0'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attB006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC001" origin="Microsoft"> + <description>Test attribute declaration with attribute name = 'a'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attC002" origin="Microsoft"> + <description>Test attribute declaration with attribute name = 'very long name > 1000 chars'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attC003" origin="Microsoft"> + <description>Test attribute declaration with attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attC004" origin="Microsoft"> + <description>Test attribute declaration with attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC005" origin="Microsoft"> + <description>Test attribute declaration with attribute name = '0'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC006" origin="Microsoft"> + <description>Test attribute declaration with attribute name = '''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC007" origin="Microsoft"> + <description>Test attribute declaration with attribute name = 'a:b' namespace for prefix 'a' is declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC008" origin="Microsoft"> + <description>Test attribute declaration with attribute name = 'a:b' namespace for prefix 'a' is NOT declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC009" origin="Microsoft"> + <description>Test attribute declaration with attribute name = 'a:b:b'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attC010" origin="Microsoft"> + <description>Test attribute declaration with attribute name = ':_'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attC010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attD001" origin="Microsoft"> + <description>Global attribute declaration type='global simple type'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attD002" origin="Microsoft"> + <description>Global attribute declaration type='global complex type'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attD003" origin="Microsoft"> + <description>Global attribute declaration type='simpleType derived by restrictrion from another simpleType'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attD003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attD004" origin="Microsoft"> + <description>Global attribute declaration type='simpleType with a list of number'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attD004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attD005" origin="Microsoft"> + <description>Global attribute declaration type=':_'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attD006" origin="Microsoft"> + <description>Global attribute declaration type='123'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attD007" origin="Microsoft"> + <description>Global attribute declaration type='simpleType with a union of two list and a atomic simpleType'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attD007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attD007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attE001" origin="Microsoft"> + <description>Local attribute declaration ref='global attribute name'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attE001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attE002" origin="Microsoft"> + <description>Test attribute declaration with optional attribute ref = 'local attribute name'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE003" origin="Microsoft"> + <description>Test attribute declaration with optional attribute ref = 'global attributeGroup name'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE004" origin="Microsoft"> + <description>reference to a global complex Type with simpleContentref='foo'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE005" origin="Microsoft"> + <description>Local attribute declaration ref=':_'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE006" origin="Microsoft"> + <description>Local attribute declaration ref='123'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE007" origin="Microsoft"> + <description>Local attribute declaration ref=''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attE008" origin="Microsoft"> + <description>reference an attribute that is from imported xsdref='global attribute which is declared in an imported XSD'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attE008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attF001" origin="Microsoft"> + <description>Test attribute declaration with optional attribute use = 'prohibited'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attF001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attF002" origin="Microsoft"> + <description>Test attribute declaration with optional attribute use = 'optional'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attF002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attF003" origin="Microsoft"> + <description>Test attribute declaration with optional attribute use = 'required'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attF003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attF004" origin="Microsoft"> + <description>Test local attribute declaration with optional attribute use = 'default'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF005" origin="Microsoft"> + <description>Test local attribute declaration with optional attribute use = 'fixed'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF006" origin="Microsoft"> + <description>Test local attribute declaration with optional attribute use = ''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF007" origin="Microsoft"> + <description>Test local attribute declaration with optional attribute use = 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF008" origin="Microsoft"> + <description>Test global attribute declaration with optional attribute use = 'default'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF009" origin="Microsoft"> + <description>Test global attribute declaration with optional attribute use = 'fixed'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF010" origin="Microsoft"> + <description>Test global attribute declaration with optional attribute use = ''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attF011" origin="Microsoft"> + <description>Test global attribute declaration with optional attribute use = 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attF011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attG001" origin="Microsoft"> + <description>Attribute/attribute with non schema namespacetargetNamespace='foo:bar'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attG001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attG002" origin="Microsoft"> + <description>Attribute/attribute with non schema namespacetargetNamespace=''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attG002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attG003" origin="Microsoft"> + <description>Attribute/attribute with non schema namespacetargetNamespace='http://foo'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attG003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attH001" origin="Microsoft"> + <description>Test attribute declaration with optional attribute value = 'string'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attH001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attI001" origin="Microsoft"> + <description>Basic attribute with just annotation content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attI002" origin="Microsoft"> + <description>Basic attribute with just simpleType content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attI003" origin="Microsoft"> + <description>Basic attribute with annotation followed by simpleType content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attI003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attI004" origin="Microsoft"> + <description>Basic attribute with two annotation content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attI005" origin="Microsoft"> + <description>Basic attribute with simpleType follow by annotation content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attI006" origin="Microsoft"> + <description>Basic attribute with two simpleType content</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attI006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ001" origin="Microsoft"> + <description>xml doc do not specify the attribute, for att declared under schema, complexType and attributeGroup, use = 'prohibited'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attJ002" origin="Microsoft"> + <description>xml doc specify the attribute, attribute decl under schema, use = 'prohibited'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attJ003" origin="Microsoft"> + <description>xml doc specify the attribute, attribute decl under complex type, use = 'prohibited'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attJ004" origin="Microsoft"> + <description>xml doc does not specify the attribute, attribute decl under attribute group, use = 'prohibited'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attJ005" origin="Microsoft"> + <description>xml doc do not specify the attribute, use = 'optional'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attJ006" origin="Microsoft"> + <description>xml doc specify the attribute, use = 'optional'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attJ007" origin="Microsoft"> + <description>xml doc specify the attribute, for att declared under complexType and attributeGroup, use = 'required'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attJ008" origin="Microsoft"> + <description>xml doc do not specify the attribute, attribute decl under schema use = 'required'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attJ009" origin="Microsoft"> + <description>xml doc do not specify the attribute, attribute decl under complexType, use = 'required'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attJ010" origin="Microsoft"> + <description>xml doc do not specify the attribute, attribute decl under attribute group use = 'required'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attJ011" origin="Microsoft"> + <description>parent is schema, use = 'default'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ012" origin="Microsoft"> + <description>parent is schema, use = 'fixed'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ013" origin="Microsoft"> + <description>parent is complexType, use = 'default'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ014" origin="Microsoft"> + <description>parent is complexType, use = 'fixed'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ015" origin="Microsoft"> + <description>parent is attributeGroup, use = 'default'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ016" origin="Microsoft"> + <description>parent is attributeGroup, use = 'fixed'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ017" origin="Microsoft"> + <description>xml doc do not specify the attribute, use = 'fixed, value='123''</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attJ018" origin="Microsoft"> + <description>Basic attribute with parent schema, parent attributeGroup, parent complexType (test most of the common type and ref)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attJ018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attKa001" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, default and fixed both present, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa002" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=absent, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKa003" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=optional, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa004" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=required, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa005" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=prohibited, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa006" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=absent, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKa007" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=optional, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa008" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=required, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa009" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, use=prohibited, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa010" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, ref present, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa011" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, type present, simpleType childNode present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa012" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, name= xmlns, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa013" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, name=xmlns:, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa014" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, name=xmlns:a, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKa015" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is schema, targetNamespace of the attribute decl is http://www.w3.org/2001/XMLSchema-instance, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKa015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb001" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, default and fixed both present, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb002" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=absent, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb003" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=optional, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb004" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=required, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb005" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=prohibited, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb006" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=absent, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb007" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=optional, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb008" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=required, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb009" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, use=prohibited, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKb010" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, ref present, name present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb011" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, ref present, simpleType childNode present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb012" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, ref present, form attribute present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb013" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, ref present, type attribute present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb014" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, type present, simpleType childNode present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb015" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, name= xmlns, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb016" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, name=xmlns:, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb017" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, name=xmlns:a, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKb018" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is attributeGroup, targetNamespace of the attribute decl is http://www.w3.org/2001/XMLSchema-instance, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKb018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc001" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, default and fixed both present, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc002" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=absent, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc003" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=optional, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc004" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=required, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc005" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=prohibited, default=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc006" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=absent, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc007" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=optional, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc008" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=required, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc009" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, use=prohibited, fixed=abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attKc010" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, ref present, name present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc011" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, ref present, simpleType childNode present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc012" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, ref present, form attribute present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc013" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, ref present, type attribute present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc014" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, type present, simpleType childNode present,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc015" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, name= xmlns, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc016" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, name=xmlns:, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc017" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, name=xmlns:a, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attKc018" origin="Microsoft"> + <description>Schema Rep Constraint: 1. Parent is complexType, targetNamespace of the attribute decl is http://www.w3.org/2001/XMLSchema-instance, ,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attKc018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attLa001" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , default='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLa002" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , default='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLa003" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , default='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLa004" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , fixed='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLa005" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , fixed='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attLa006" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is schema , fixed='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLa006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLb001" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, default='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLb002" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, default='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLb003" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, default='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLb004" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, fixed='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLb005" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, fixed='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attLb006" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is attributeGroup, fixed='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLb006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLc001" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, default='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLc002" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, default='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLc003" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, default='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLc004" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, fixed='abc' , xml instant has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attLc005" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, fixed='abc' , xml instant NOT has the attribute with value='abc',</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attLc006" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: Parent is complexType, fixed='abc' , xml instant NOT has the attribute at all,</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attLc006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMa001" origin="Microsoft"> + <description>parent is schema (ref in complexType and attributeGroup), form=qualified, attributeFormDefault=absentattribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMa002" origin="Microsoft"> + <description>parent is schema (ref in complexType and attributeGroup), form=unqualified, attributeFormDefault=qualified,attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMa003" origin="Microsoft"> + <description>parent is schema (ref in complexType and attributeGroup), form=qualified, attributeFormDefault=absentattribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMa004" origin="Microsoft"> + <description>parent is schema (ref in complexType and attributeGroup), form=unqualified, attributeFormDefault=qualified,attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb001" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=absent, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMb002" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=unqualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMb003" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=qualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMb004" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=absent, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb005" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=unqualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb006" origin="Microsoft"> + <description>parent is complexType, form=qualified, attributeFormDefault=qualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb007" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=absent, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb008" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=unqualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb009" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=qualified, attribute in xml doc has no prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMb010" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=absent, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMb011" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=unqualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMb012" origin="Microsoft"> + <description>parent is complexType, form=unqualified, attributeFormDefault=qualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMb012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc001" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=absent, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc002" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=unqualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc003" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=qualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc004" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=absent, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc005" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=unqualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc006" origin="Microsoft"> + <description>parent is attributeGroup,form=qualified, attributeFormDefault=qualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc007" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=absent, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc008" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=unqualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc009" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=qualified, attribute in xml doc has no prefix, but the containing element has a default namespace declared</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attMc010" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=absent, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc011" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=unqualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attMc012" origin="Microsoft"> + <description>parent is attributeGroup,form=unqualified, attributeFormDefault=qualified, attribute in xml doc is qualified with prefix</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attMc012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attO001" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: type=int, instant xml value ='abc'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attO002" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: type=int, fixed='abc'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO003" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: type=int, default='abc'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO004" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: type=enumeration, instant xml value ='not a enumeration type'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attO005" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=int, default=' 1 2'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO006" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=int, fixed=' 123', instant xml value=' 123 '</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attO007" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=string, fixed=' 1 2 3', instant xml value=' 1 2 3'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attO008" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=string, fixed=' 1 2 3', instant xml value=' 1 2 3'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attO009" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=NMTOKENS, fixed=' -linebreak -tab X -tab -linebreak Y -linebreak Z -linebreak', instant xml value='X Y Z'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attO010" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=NMTOKENS, fixed='#xd; #xd;A #xa; #xa;B #xd; #xa;' instant xml value='#xD #xD A #xA #xA B #xD #xA'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attO011" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=string, fixed=' -linebreak -tab X -tab -linebreak Y -linebreak Z -linebreak', instant xml value=' X Y Z '</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attO012" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid (check normalization): type=string, fixed='#xd; #xd;A #xa; #xa;B #xd; #xa;' instant xml value='A B'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attO012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attO013" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=required, referenced in complexType with use=absent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO014" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=required, referenced in complexType with use=optional</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO015" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=required, referenced in complexType with use=required</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO016" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=required, referenced in complexType with use=prohibited</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO017" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=optional, referenced in complexType with use=absent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO018" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=optional, referenced in complexType with use=optional</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attO019" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=optional, referenced in complexType with use=required</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO020" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=optional, referenced in complexType with use=prohibited</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO021" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=prohibited, referenced in complexType with use=absent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO022" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=prohibited, referenced in complexType with use=optional</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO023" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=prohibited, referenced in complexType with use=required</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO024" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with use=prohibited, referenced in complexType with use=prohibited</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attO025" origin="Microsoft"> + <description>Validation Rule: Attribute Locally Valid: global attribute 'foo' with, fixed='123', referenced in complexType fixed='345'</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attO025.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attP001" origin="Microsoft"> + <description>Attribute/attribute decl within attribute decl</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attP002" origin="Microsoft"> + <description>element decl within attribute decl</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attP003" origin="Microsoft"> + <description>global decl can't contain ref</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attP004" origin="Microsoft"> + <description>type='my simple type', fixed=conform to the type, and xml instant has the attribute with valid value</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP005" origin="Microsoft"> + <description>type='my simple type', fixed=conform to the type, and xml instant has the attribute with invalid value</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP006" origin="Microsoft"> + <description>type='my simple type', fixed=NOT conform to the type</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attP007" origin="Microsoft"> + <description>use=required, fixed and default are absent (must appear, value can be anything), instant xml value=36</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP008" origin="Microsoft"> + <description>use=required, fixed and default are absent (must appear, value can be anything), instant xml attribute absent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP009" origin="Microsoft"> + <description>use=required, fixed='37' (must appear once, value must be '37'), instant xml value does not appear</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP010" origin="Microsoft"> + <description>use=required, fixed='37' (must appear once, value must be '37'), instant xml value =36</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP011" origin="Microsoft"> + <description>use=required, fixed='37' (must appear once, value must be '37'), instant xml value =37</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP012" origin="Microsoft"> + <description>use=required, fixed='37' (must appear once, value must be '37'), instant xml value =38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP013" origin="Microsoft"> + <description>use=absent, fixed='37' (may appear once, if appear, value must be '37'), instant xml value does not appear (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP014" origin="Microsoft"> + <description>use=absent, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =36</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP015" origin="Microsoft"> + <description>use=absent, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =37</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP016" origin="Microsoft"> + <description>use=absent, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP017" origin="Microsoft"> + <description>use=optional, fixed='37' (may appear once, if appear, value must be '37'), instant xml value does not appear (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP018" origin="Microsoft"> + <description>use=optional, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =36</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP019" origin="Microsoft"> + <description>use=optional, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =37</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP020" origin="Microsoft"> + <description>use=optional, fixed='37' (may appear once, if appear, value must be '37'), instant xml value =38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP021" origin="Microsoft"> + <description>use=absent, default='37' (may appear once, may have any value), instant xml value does not appear (this will have the default attribute and value)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP022" origin="Microsoft"> + <description>use=absent, default='37' (may appear once, may have any value), instant xml value=37</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP023" origin="Microsoft"> + <description>use=absent, default='37' (may appear once, may have any value), instant xml value=38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP024" origin="Microsoft"> + <description>use=optional, default='37' (may appear once, may have any value), instant xml value does not appear (this will have the default attribute and value)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP025" origin="Microsoft"> + <description>use=optional, default='37' (may appear once, may have any value), instant xml value=37</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP026" origin="Microsoft"> + <description>use=optional, default='37' (may appear once, may have any value), instant xml value=38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP027" origin="Microsoft"> + <description>name='foo' use=optional, default='37' (may appear once, may have any value) name='foo1', instant xml value=38</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP027.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP028" origin="Microsoft"> + <description>use=prohibited, default='37' (must not appear in xml instant, attribute does not appear in the instant XML (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP029" origin="Microsoft"> + <description>use=prohibited, fixed='37' (must not appear in xml instant, attribute does not appear in the instant XML (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attP030" origin="Microsoft"> + <description>use=prohibited, default='37' (must not appear in xml instant, attribute does appear in the instant XML (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attP031" origin="Microsoft"> + <description>use=prohibited, fixed='37' (must not appear in xml instant, attribute does appear in the instant XML (attribute not exist in instant doc)</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attP032" origin="Microsoft"> + <description>Test that attributes from imported schema (global, attribute Group, complexTyped and simpleTyped) are recognized</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attP032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attP032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attQ001" origin="Microsoft"> + <description>parent is complexType, Attr Decl before simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ002" origin="Microsoft"> + <description>parent is complexType, Attr Decl before complexContent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ003" origin="Microsoft"> + <description>parent is complexType, Attr Decl, followed by Attr Group, follow by Attr</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attQ004" origin="Microsoft"> + <description>Attr Decl before annotation</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ005" origin="Microsoft"> + <description>Parent is schema, and name is absent</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ006" origin="Microsoft"> + <description>Attribute/attribute decl with child of node other than notation and simpleType, child=complexType</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ007" origin="Microsoft"> + <description>two attribute decl with the same name, one follow the other in global</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ008" origin="Microsoft"> + <description>two attribute decl with the same name, one inside attribute Group and other is a reference to global attribute</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ009" origin="Microsoft"> + <description>two attribute decl with the same name, one from local one from referenced attribute Group</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ010" origin="Microsoft"> + <description>two attribute decl with the same name, one from global, one from from imported XSD with different namespace</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attQ011" origin="Microsoft"> + <description>two attribute decl with the same name, one from global, one from from redefine XSD with same namespace</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ012" origin="Microsoft"> + <description>two attribute decl with the same name, one from global, one from included XSD</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ013" origin="Microsoft"> + <description>two attribute decl with the same name, reference from different attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ014" origin="Microsoft"> + <description>Attribute/attribute decl under extension element</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attQ015" origin="Microsoft"> + <description>two attribute decl with same id, one under attribute group and, one in element.</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ016" origin="Microsoft"> + <description>two attribute decl with same id, one under attribute group and, one from imported xsd</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ017" origin="Microsoft"> + <description>two attribute decl with same id, one in complex type and, one redefine</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ018" origin="Microsoft"> + <description>two attribute decl with same id, one in element and one from included</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attQ019" origin="Microsoft"> + <description>two attribute, same loca name, from different namespace on same element</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attQ019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attZ001" origin="Microsoft"> + <description>70993 - XmlSchema: Redefine does not recognize restriction of attribute</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attZ002" origin="Microsoft"> + <description>71821 - prohibited attribute doesn't work</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attZ003" origin="Microsoft"> + <description>Bug 68655 - xml:space attribute cannot be added to the parent when there are children existing</description> + <files> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attribute" fileName="attZ003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgA001" origin="Microsoft"> + <description>Test attributeGroup declaration with optional attribute id='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgA002" origin="Microsoft"> + <description>Test attributeGroup declaration with optional attribute id='0'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA003" origin="Microsoft"> + <description>Test attributeGroup declaration with optional attribute id=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA004" origin="Microsoft"> + <description>Test attributeGroup declaration with attribute id=':a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA005" origin="Microsoft"> + <description>Test attributeGroups: 2 global attributeGroups with same ID</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA006" origin="Microsoft"> + <description>Test attributeGroups: 2 attributeGroups, one is global and one is from 'redefine', with same ID</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA007" origin="Microsoft"> + <description>Test attributeGroups: 2 attributeGroup, one is from complexType and one is inside another attributeGroup of some extension, with same ID</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA008" origin="Microsoft"> + <description>Test attributeGroups: 2 attributeGroup, one is from imported xsd, and one is from included xsd, with same ID</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgA009" origin="Microsoft"> + <description>Test attributeGroups: redefine an attributeGroup and give it an existing ID</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgA009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB001" origin="Microsoft"> + <description>Test attributeGroup declaration with attribute name='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB002" origin="Microsoft"> + <description>Test attributeGroup declaration: cannot have name attribute if not global, parent is attributeGroup, name='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB003" origin="Microsoft"> + <description>Test attributeGroup declaration: cannot have name attribute if not global, parent is complexType, name='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB004" origin="Microsoft"> + <description>Test attributeGroup declaration: cannot have name attribute if not global, parent is extension, name='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB005" origin="Microsoft"> + <description>Test attributeGroup declaration: cannot have name attribute if not global (redefining global is ok), parent is redefine, name='a'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB006" origin="Microsoft"> + <description>Test attributeGroup declaration with attribute name='0'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB007" origin="Microsoft"> + <description>Test attributeGroup declaration with attribute name=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB008" origin="Microsoft"> + <description>Test attributeGroup declaration with attribute name='msxml'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB009" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 attributeGroups, one imported, one included with same name but different targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB010" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 global attributeGroups with same name</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB011" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 attributeGroups with same name both of them from different redefine, with same namespac.</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB012" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 attributeGroups with same name both of them from different import, with different namespac.</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB013" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 imported attributeGroups with same name and same targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgB014" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 imported attributeGroups with same name but different targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgB015" origin="Microsoft"> + <description>Test attributeGroup declaration: 2 attributeGroups, one imported, one included with same name and same targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgB015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC001" origin="Microsoft"> + <description>Test attributeGroup declaration: cannot have ref attribute on global, parent is schema, ref='name of a global attribute group '</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC002" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is attributeGroup, ref='name of a global attribute group declared at the beginning of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC003" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is attributeGroup, ref='name of a global attribute group from imported xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC004" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is attributeGroup, ref='name of a global attribute group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC005" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='name of global attribute group declared at the end of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC006" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='name of attribute group declared inside a redefine', and xml instant has value different what is defined as fixed in the redefined attributeGroup.</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgC007" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='name of attribute group declared inside a redefine', and xml instant has value same as what is defined as fixed in the redefined attributeGroup.</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC008" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='foo (not a valid reference to an attributeGroup)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC009" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC010" origin="Microsoft"> + <description>Test attributeGroup declaration: self referencing, name='test', has child attributeGroup that also has, parent is attributeGroup, ref='test'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC011" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='foo (a name of a global attribute)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC012" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is attributeGroup, ref='very very log string ( more than 9999 chars)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC013" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is complexType, ref='name of a global attribute group declared at the beginning of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC014" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is complexType, ref='name of a global attribute group from imported xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC015" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is complexType, ref='name of a global attribute group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC016" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref='name of global attribute group declared at the end of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC017" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref='name of attribute group declared inside a redefine'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC018" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref='foo (not a valid reference to an attributeGroup)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC019" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC020" origin="Microsoft"> + <description>Test attributeGroup declaration: self referencing, name='test', has child attributeGroup that also has, parent is complexType, ref='test'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC021" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref='foo (a name of a global attribute)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC022" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is complexType, ref='very very log string ( more than 9999 chars)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC023" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is extension, ref='name of a global attribute group declared at the beginning of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC023.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC024" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is extension, ref='name of a global attribute group from imported xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC025" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is extension, ref='name of a global attribute group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgC026" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is extension, ref='name of a global attribute group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC027" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref='name of global attribute group declared at the end of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC027.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC028" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref='name of attribute group declared inside a redefine'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgC029" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref='foo (not a valid reference to an attributeGroup)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC030" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC031" origin="Microsoft"> + <description>Test attributeGroup declaration: self referencing, name='test', has child attributeGroup that also has, parent is extension, ref='test'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC032" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref='foo (a name of a global attribute)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC033" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is extension, ref='very very log string ( more than 9999 chars)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC034" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is redefine, ref='name of a global attribute group declared at the beginning of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC035" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is redefine, ref='name of a global attribute group from imported xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC036" origin="Microsoft"> + <description>Test attributeGroup declaration: parent is redefine, ref='name of a global attribute group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC037" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref='name of global attribute group declared at the end of xsd'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC038" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref='name of attribute group declared inside a redefine'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgC039" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref='foo (not a valid reference to an attributeGroup)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC040" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref=''</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC041" origin="Microsoft"> + <description>Test attributeGroup declaration: circular Ref is allow if parent is redefine, name='test', has child attributeGroup that also has, parent is redefine, ref='test'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC042" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref='foo (a name of a global attribute)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC043" origin="Microsoft"> + <description>Test attributeGroup declaration: can only reference global attributeGroup parent is redefine, ref='very very log string ( more than 9999 chars)'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC043.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgC044" origin="Microsoft"> + <description>attributeGroup with two attributeGroup as children, both has ref='foo'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgC045" origin="Microsoft"> + <description>attributeGroup with name='foo', complexType with name='foo'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgC045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgD001" origin="Microsoft"> + <description>attributeGroup with annotation</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgD002" origin="Microsoft"> + <description>attributeGroup with two annotation</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD003" origin="Microsoft"> + <description>attributeGroup with 2000 attribute decl as child, the xml has the 2000 attributes</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD004" origin="Microsoft"> + <description>attributeGroup with just another attributeGroup, the xml has the attributes</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD005" origin="Microsoft"> + <description>attributeGroup with child in the sequence of ( att, attg, att, attg, att), the xml has the attributes</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD006" origin="Microsoft"> + <description>attributeGroup with two attribute, same name, same namespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD007" origin="Microsoft"> + <description>attribute group with two attribute, where the name of one att is same as the ref value of the other</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD008" origin="Microsoft"> + <description>attributeGroup with two attribute, same name, same type</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD009" origin="Microsoft"> + <description>attributeGroup with two attribute, same name, different type</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD010" origin="Microsoft"> + <description>attributeGroup with child attribute and attributeGroup which intern reference to different attributeGroup containing attributes and attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgD011" origin="Microsoft"> + <description>attributeGroup with child attributeGroup that reference to an element</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD012" origin="Microsoft"> + <description>attributeGroup with child element declaration</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD013" origin="Microsoft"> + <description>attributeGroup with child attributeGroup that reference to a simpleType</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD014" origin="Microsoft"> + <description>attributeGroup with child attributeGroup that reference to complexType</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD015" origin="Microsoft"> + <description>Basic AttributeGroup ( w/ name = foo and containing an attributeGroup with ref = foobar) and attributeGroup (w/ name=foobar and containing an attributeGroup with ref=foo)</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD016" origin="Microsoft"> + <description>attributeGroup that has two attributeGroups, which reference to two different attributeGroups that reference the same attribute</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD017" origin="Microsoft"> + <description>attributeGroup that has two attributeGroups, parent is redefined, attG1 reference a global attributeGroup which define an attribute 'foo', attG2 reference the redefining xsd's attributeGroup 'foo' with same namespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD018" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ id)</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD019" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ annotation)</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD020" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##any), the xml has the attribute instance with no namespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD021" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##any), the xml has the attribute instance with 'foo' as its namespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD022" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##other), the xml has the attribute instance with namespace different from the targetNamdspace of the xsd</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD023" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##other), the xml has the attribute instance with namespace same as the targetNamdspace of the xsd</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD023.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD024" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##any), the xml has the attribute instance which fall under targetNS, but not defiled in the schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD025" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##local), the xml has the attribute instance which is namespace UNqualified</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD026" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##local), the xml has the attribute instance which is namespace qualified</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD026.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD027" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace='foo'), the xml has the attribute instance which is of namespace 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD028" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace='foo'), the xml has the attribute instance which is of namespace 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD029" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##targetNamespace), the xml has the attribute instance which is of namespace targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD030" origin="Microsoft"> + <description>Basic AttributeGroup with anyAttribute (w/ namespace=##targetNamespace), the xml has the attribute instance which is of namespace other than targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD030.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD031" origin="Microsoft"> + <description>AttributeGroup (w/ namespace=other, processContents=##skip), the xml has the attribute instance which conatins attribute not declared in any schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD032" origin="Microsoft"> + <description>AttributeGroup (w/ namespace=other, processContents=##lax), the xml has the attribute instance which conatins valid elements and attribute against schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD033" origin="Microsoft"> + <description>AttributeGroup (w/ namespace=other, processContents=##lax), the xml has the attribute instance which conatins invalid attribute against schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD034" origin="Microsoft"> + <description>AttributeGroup (w/ namespace=other, processContents=##strict), the xml has the attribute instance which conatins valid elements and attribute against schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD035" origin="Microsoft"> + <description>complexType's AttributeGroup with reference to attributeGroup from 'redefine', where there is an attribute declared as int, with value='37', the xml has the attribute instance which '36'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD035.xml" role="instance" validity="0"/> + </files> + </test> + <test id="attgD036" origin="Microsoft"> + <description>complexType's AttributeGroup with reference to attributeGroup from 'redefine', where there is an attribute declared as int, with value='37', the xml has the attribute instance which '37'</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="attgD037" origin="Microsoft"> + <description>AttributeGroup with ref='foo' and has attribute decl as child</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD038" origin="Microsoft"> + <description>AttributeGroup with ref='foo' and has attributeGroup decl as child</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD039" origin="Microsoft"> + <description>AttributeGroup with ref='foo' and has AnyAattribute decl as child</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD040" origin="Microsoft"> + <description>AttributeGroup with ref='foo' and has annotation as child</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="attgD041" origin="Microsoft"> + <description>circular reference, attG A ref to B which ref C which ref back to A</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="attgD042" origin="Microsoft"> + <description>AttributeGroup (w/ namespace=other, processContents=##strict), the xml has the attribute instance which conatins invalid attribute against schema</description> + <files> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="attributeGroup" fileName="attgD042.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctA001" origin="Microsoft"> + <description>Declaration with optional attribute abstract = 'false'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA002" origin="Microsoft"> + <description>Declaration with optional attribute abstract = 'true'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA003" origin="Microsoft"> + <description>Declaration with optional attribute abstract = '1'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA004" origin="Microsoft"> + <description>Declaration with optional attribute abstract = '-1'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA005" origin="Microsoft"> + <description>Declaration with optional attribute abstract = '0'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA006" origin="Microsoft"> + <description>Declaration with optional attribute abstract = 'TRUE'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA007" origin="Microsoft"> + <description>Declaration with optional attribute abstract = 'FALSE'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA008" origin="Microsoft"> + <description>Declaration with optional attribute abstract = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA009" origin="Microsoft"> + <description>Declaration with optional attribute block = '#all'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA010" origin="Microsoft"> + <description>Declaration with optional attribute block = 'extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA011" origin="Microsoft"> + <description>Declaration with optional attribute block = 'restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA012" origin="Microsoft"> + <description>Declaration with optional attribute block = 'restriction extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA013" origin="Microsoft"> + <description>Declaration with optional attribute block = 'extension restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA014" origin="Microsoft"> + <description>Declaration with optional attribute block = 'restriction restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA015" origin="Microsoft"> + <description>Declaration with optional attribute block = 'extension extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA016" origin="Microsoft"> + <description>Declaration with optional attribute block = 'substitution'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA017" origin="Microsoft"> + <description>Declaration with optional attribute block = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA018" origin="Microsoft"> + <description>Declaration with optional attribute final = '#all'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA019" origin="Microsoft"> + <description>Declaration with optional attribute final = 'extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA020" origin="Microsoft"> + <description>Declaration with optional attribute final = 'restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA021" origin="Microsoft"> + <description>Declaration with optional attribute final = 'restriction extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA022" origin="Microsoft"> + <description>Declaration with optional attribute final = 'extension restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA023" origin="Microsoft"> + <description>Declaration with optional attribute final = 'restriction restriction'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA024" origin="Microsoft"> + <description>Declaration with optional attribute final = 'extension extension'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA025" origin="Microsoft"> + <description>Declaration with optional attribute final = 'substitution'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA026" origin="Microsoft"> + <description>Declaration with optional attribute final = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA027" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA028" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA029" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA030" origin="Microsoft"> + <description>Declaration with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA031" origin="Microsoft"> + <description>Declaration with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA032" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , name attribute='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA033" origin="Microsoft"> + <description>Declaration with optional attribute mixed = 'true'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA034" origin="Microsoft"> + <description>Declaration with optional attribute mixed = 'false'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA035" origin="Microsoft"> + <description>Declaration with optional attribute mixed = '1'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA036" origin="Microsoft"> + <description>Declaration with optional attribute mixed = '-1'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA037" origin="Microsoft"> + <description>Declaration with optional attribute mixed = '0'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA038" origin="Microsoft"> + <description>Declaration with optional attribute mixed = 'TRUE'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA039" origin="Microsoft"> + <description>Declaration with optional attribute mixed = 'FALSE'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA040" origin="Microsoft"> + <description>Declaration with optional attribute mixed = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA041" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA042" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , complexType not global, parent is an element</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA043" origin="Microsoft"> + <description>Declaration with optional attribute name = 'a:b'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA044" origin="Microsoft"> + <description>Declaration with optional attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA045" origin="Microsoft"> + <description>Declaration with optional attribute name = 'xmlns'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA046" origin="Microsoft"> + <description>Declaration with optional attribute name = '1foo'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctA047" origin="Microsoft"> + <description>Declaration with optional attribute name = '_foo'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA047.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA048" origin="Microsoft"> + <description>Declaration with optional attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA048.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctA049" origin="Microsoft"> + <description>attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctA049.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB001" origin="Microsoft"> + <description>content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB002" origin="Microsoft"> + <description>content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB003" origin="Microsoft"> + <description>content with simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB004" origin="Microsoft"> + <description>content with simpleContent then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB005" origin="Microsoft"> + <description>content with simpleContent then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB006" origin="Microsoft"> + <description>content with simpleContent then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB007" origin="Microsoft"> + <description>content with simpleContent then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB008" origin="Microsoft"> + <description>content with simpleContent then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB009" origin="Microsoft"> + <description>content with simpleContent then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB010" origin="Microsoft"> + <description>content with simpleContent then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB011" origin="Microsoft"> + <description>content with simpleContent then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB012" origin="Microsoft"> + <description>content with simpleContent then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB013" origin="Microsoft"> + <description>content with simpleContent then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB014" origin="Microsoft"> + <description>content with simpleContent then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB015" origin="Microsoft"> + <description>content with simpleContent then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB016" origin="Microsoft"> + <description>content with simpleContent then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB017" origin="Microsoft"> + <description>content with complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB018" origin="Microsoft"> + <description>content with complexContent then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB019" origin="Microsoft"> + <description>content with complexContent then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB020" origin="Microsoft"> + <description>content with complexContent then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB021" origin="Microsoft"> + <description>content with complexContent then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB022" origin="Microsoft"> + <description>content with complexContent then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB023" origin="Microsoft"> + <description>content with complexContent then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB024" origin="Microsoft"> + <description>content with complexContent then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB025" origin="Microsoft"> + <description>content with complexContent then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB026" origin="Microsoft"> + <description>content with complexContent then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB027" origin="Microsoft"> + <description>content with complexContent then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB028" origin="Microsoft"> + <description>content with complexContent then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB029" origin="Microsoft"> + <description>content with complexContent then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB030" origin="Microsoft"> + <description>content with complexContent then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB031" origin="Microsoft"> + <description>content with group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB032" origin="Microsoft"> + <description>content with group then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB033" origin="Microsoft"> + <description>content with group then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB034" origin="Microsoft"> + <description>content with group then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB034.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB035" origin="Microsoft"> + <description>content with group then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB036" origin="Microsoft"> + <description>content with group then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB037" origin="Microsoft"> + <description>content with group then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB038" origin="Microsoft"> + <description>content with group then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB039" origin="Microsoft"> + <description>content with group then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB039.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB040" origin="Microsoft"> + <description>content with group then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB041" origin="Microsoft"> + <description>content with group then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB042" origin="Microsoft"> + <description>content with group then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB042.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB043" origin="Microsoft"> + <description>content with group then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB044" origin="Microsoft"> + <description>content with group then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB045" origin="Microsoft"> + <description>content with all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB046" origin="Microsoft"> + <description>content with all then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB047" origin="Microsoft"> + <description>content with all then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB047.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB048" origin="Microsoft"> + <description>content with all then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB048.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB049" origin="Microsoft"> + <description>content with all then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB050" origin="Microsoft"> + <description>content with all then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB051" origin="Microsoft"> + <description>content with all then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB052" origin="Microsoft"> + <description>content with all then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB053" origin="Microsoft"> + <description>content with all then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB053.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB053.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB054" origin="Microsoft"> + <description>content with all then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB054.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB054.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB055" origin="Microsoft"> + <description>content with all then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB055.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB056" origin="Microsoft"> + <description>content with all then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB056.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB057" origin="Microsoft"> + <description>content with all then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB057.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB058" origin="Microsoft"> + <description>content with all then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB059" origin="Microsoft"> + <description>content with choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB059.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB059.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB060" origin="Microsoft"> + <description>content with choice then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB060.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB061" origin="Microsoft"> + <description>content with choice then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB061.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB062" origin="Microsoft"> + <description>content with choice then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB062.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB063" origin="Microsoft"> + <description>content with choice then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB063.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB064" origin="Microsoft"> + <description>content with choice then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB064.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB065" origin="Microsoft"> + <description>content with choice then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB065.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB066" origin="Microsoft"> + <description>content with choice then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB066.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB067" origin="Microsoft"> + <description>content with choice then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB067.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB067.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB068" origin="Microsoft"> + <description>content with choice then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB068.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB068.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB069" origin="Microsoft"> + <description>content with choice then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB069.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB069.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB070" origin="Microsoft"> + <description>content with choice then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB070.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB070.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB071" origin="Microsoft"> + <description>content with choice then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB071.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB071.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB072" origin="Microsoft"> + <description>content with choice then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB072.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB073" origin="Microsoft"> + <description>content with sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB073.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB073.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB074" origin="Microsoft"> + <description>content with sequence then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB074.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB075" origin="Microsoft"> + <description>content with sequence then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB075.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB076" origin="Microsoft"> + <description>content with sequence then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB076.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB077" origin="Microsoft"> + <description>content with sequence then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB077.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB078" origin="Microsoft"> + <description>content with sequence then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB078.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB079" origin="Microsoft"> + <description>content with sequence then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB079.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB080" origin="Microsoft"> + <description>content with sequence then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB080.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB081" origin="Microsoft"> + <description>content with sequence then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB081.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB081.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB082" origin="Microsoft"> + <description>content with sequence then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB082.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB082.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB083" origin="Microsoft"> + <description>content with sequence then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB083.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB083.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB084" origin="Microsoft"> + <description>content with sequence then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB084.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB084.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB085" origin="Microsoft"> + <description>content with sequence then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB085.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB085.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB086" origin="Microsoft"> + <description>content with sequence then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB086.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB087" origin="Microsoft"> + <description>content with attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB087.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB087.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB088" origin="Microsoft"> + <description>content with attribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB088.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB089" origin="Microsoft"> + <description>content with attribute then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB089.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB090" origin="Microsoft"> + <description>content with attribute then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB090.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB091" origin="Microsoft"> + <description>content with attribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB091.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB092" origin="Microsoft"> + <description>content with attribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB092.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB093" origin="Microsoft"> + <description>content with attribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB093.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB094" origin="Microsoft"> + <description>content with attribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB094.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB095" origin="Microsoft"> + <description>content with attribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB095.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB095.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB096" origin="Microsoft"> + <description>content with attribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB096.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB096.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB097" origin="Microsoft"> + <description>content with attribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB097.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB097.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB098" origin="Microsoft"> + <description>content with attribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB098.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB098.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB099" origin="Microsoft"> + <description>content with attribute then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB099.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB100" origin="Microsoft"> + <description>content with attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB100.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB100.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB101" origin="Microsoft"> + <description>content with attributeGroup then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB101.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB102" origin="Microsoft"> + <description>content with attributeGroup then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB102.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB103" origin="Microsoft"> + <description>content with attributeGroup then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB103.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB104" origin="Microsoft"> + <description>content with attributeGroup then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB104.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB105" origin="Microsoft"> + <description>content with attributeGroup then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB105.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB106" origin="Microsoft"> + <description>content with attributeGroup then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB106.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB107" origin="Microsoft"> + <description>content with attributeGroup then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB107.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB108" origin="Microsoft"> + <description>content with attributeGroup then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB108.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB108.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB109" origin="Microsoft"> + <description>content with attributeGroup then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB109.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB109.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB110" origin="Microsoft"> + <description>content with attributeGroup then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB110.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB110.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB111" origin="Microsoft"> + <description>content with attributeGroup then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB111.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB111.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB112" origin="Microsoft"> + <description>content with attributeGroup then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB112.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB113" origin="Microsoft"> + <description>content with anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB113.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB113.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctB114" origin="Microsoft"> + <description>content with anyAttribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB114.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB115" origin="Microsoft"> + <description>content with anyAttribute then simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB115.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB116" origin="Microsoft"> + <description>content with anyAttribute then complexContent</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB116.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB117" origin="Microsoft"> + <description>content with anyAttribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB117.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB118" origin="Microsoft"> + <description>content with anyAttribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB118.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB119" origin="Microsoft"> + <description>content with anyAttribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB119.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB120" origin="Microsoft"> + <description>content with anyAttribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB120.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB121" origin="Microsoft"> + <description>content with anyAttribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB121.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB122" origin="Microsoft"> + <description>content with anyAttribute then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB122.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB123" origin="Microsoft"> + <description>content with anyAttribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB123.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB124" origin="Microsoft"> + <description>content with anyAttribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB124.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctB125" origin="Microsoft"> + <description>content with anyAttribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctB125.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC001" origin="Microsoft"> + <description>simpleContent with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctC002" origin="Microsoft"> + <description>simpleContent with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC003" origin="Microsoft"> + <description>simpleContent with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC004" origin="Microsoft"> + <description>simpleContent with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC005" origin="Microsoft"> + <description>simpleContent with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC006" origin="Microsoft"> + <description>attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctC007" origin="Microsoft"> + <description>simpleContent and content of annotation and restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctC008" origin="Microsoft"> + <description>simpleContent and content of extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctC009" origin="Microsoft"> + <description>simpleContent and content of annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC010" origin="Microsoft"> + <description>simpleContent and content of extension and annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC011" origin="Microsoft"> + <description>simpleContent and content of restriction and annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctC012" origin="Microsoft"> + <description>simpleContent and content of annotation and extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctC012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD001" origin="Microsoft"> + <description>simpleContent, content of restriction and base = 'xsd:string'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD002" origin="Microsoft"> + <description>simpleContent, content of restriction and base = defined complex type</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD003" origin="Microsoft"> + <description>simpleContent, content of restriction and base = 'xsd:something'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD004" origin="Microsoft"> + <description>simpleContent, content of restriction and base = 'xsd:anyType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD005" origin="Microsoft"> + <description>simpleContent, content of restriction and empty content</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD006" origin="Microsoft"> + <description>simpleContent, content of restriction and content of annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD007" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two annotations</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD008" origin="Microsoft"> + <description>simpleContent, content of restriction and content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD009" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two simpleTypes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD010" origin="Microsoft"> + <description>simpleContent, content of restriction and content of annotation then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD011" origin="Microsoft"> + <description>simpleContent, content of restriction and content of simpleType then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD012" origin="Microsoft"> + <description>simpleContent, content of restriction and content of simpleType then facet</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD013" origin="Microsoft"> + <description>simpleContent, content of restriction and content of duration</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD014" origin="Microsoft"> + <description>simpleContent, content of restriction and content of encoding</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD015" origin="Microsoft"> + <description>simpleContent, content of restriction and content of enumeration</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD016" origin="Microsoft"> + <description>simpleContent, content of restriction and content of length</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD017" origin="Microsoft"> + <description>simpleContent, content of restriction and content of maxExclusive</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD018" origin="Microsoft"> + <description>simpleContent, content of restriction and content of maxInclusive</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD019" origin="Microsoft"> + <description>simpleContent, content of restriction and content of maxLength</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD020" origin="Microsoft"> + <description>simpleContent, content of restriction and content of minExclusive</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD021" origin="Microsoft"> + <description>simpleContent, content of restriction and content of minInclusive</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD022" origin="Microsoft"> + <description>simpleContent, content of restriction and content of minLength</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD023" origin="Microsoft"> + <description>simpleContent, content of restriction and content of pattern</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD024" origin="Microsoft"> + <description>simpleContent, content of restriction and content of period</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD025" origin="Microsoft"> + <description>simpleContent, content of restriction and content of totalDigits</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD026" origin="Microsoft"> + <description>simpleContent, content of restriction and content of fractionDigits</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD027" origin="Microsoft"> + <description>simpleContent, content of restriction and content of whiteSpace</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD028" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two facets</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD029" origin="Microsoft"> + <description>simpleContent, content of restriction and content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD030" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD031" origin="Microsoft"> + <description>simpleContent, content of restriction and content of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD032" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD033" origin="Microsoft"> + <description>simpleContent, content of restriction and content of anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD034" origin="Microsoft"> + <description>simpleContent, content of restriction and content of two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD034.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD035" origin="Microsoft"> + <description>simpleContent, content of restriction with base='xsd:string' and content of length=5 and attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctD036" origin="Microsoft"> + <description>simpleContent, content of restriction and content of group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD037" origin="Microsoft"> + <description>simpleContent, content of restriction and content of all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD038" origin="Microsoft"> + <description>simpleContent, content of restriction and content of choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD039" origin="Microsoft"> + <description>simpleContent, content of restriction and content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD040" origin="Microsoft"> + <description>simpleContent, content of restriction and content of attribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD041" origin="Microsoft"> + <description>simpleContent, content of restriction and content of attribute then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD042" origin="Microsoft"> + <description>simpleContent, content of restriction and content of attribute then facet</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctD043" origin="Microsoft"> + <description>simpleContent, content of restriction and content of anyAttribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctD043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE001" origin="Microsoft"> + <description>simpleContent, content of extension and base='xsd:string'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE002" origin="Microsoft"> + <description>simpleContent, content of extension and base = defined complex type whose base is simpleType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE003" origin="Microsoft"> + <description>simpleContent, content of extension and base = defined complex type whose base is complexType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE004" origin="Microsoft"> + <description>simpleContent, content of extension and base = 'xsd:anyType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE005" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of length=5</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE006" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE007" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE008" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE009" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of two annotations</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE010" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctE011" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE012" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE013" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE014" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE015" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of attribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE016" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of anyAttribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctE017" origin="Microsoft"> + <description>simpleContent, content of extension with base='xsd:string' and content of annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctE017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF001" origin="Microsoft"> + <description>comlexContent with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF002" origin="Microsoft"> + <description>comlexContent with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF003" origin="Microsoft"> + <description>comlexContent with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF004" origin="Microsoft"> + <description>comlexContent with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF005" origin="Microsoft"> + <description>comlexContent with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF006" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'true' and content of restriction then content of sequence with elements</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF007" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'false' and content of restriction then content of sequence with elements</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF008" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'true' and content of extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF009" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'true' and content of extension then content of sequence with elements</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF010" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'false' and content of extension then empty content</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF011" origin="Microsoft"> + <description>complexContent with optional attribute mixed = 'false' and content of extension then content of sequence with elements</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF012" origin="Microsoft"> + <description>complexContent with no content</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF013" origin="Microsoft"> + <description>complexContent and content of annotation and restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF014" origin="Microsoft"> + <description>complexContent and content of extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctF015" origin="Microsoft"> + <description>complexContent and content of annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF016" origin="Microsoft"> + <description>complexContent and content of extension and annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctF017" origin="Microsoft"> + <description>complexContent and content of restriction and annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctF017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG001" origin="Microsoft"> + <description>complexContent, content of restriction and content with group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG002" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG003" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG004" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG005" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG006" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG007" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG008" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG009" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG010" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG011" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG012" origin="Microsoft"> + <description>complexContent, content of restriction and content with group then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG013" origin="Microsoft"> + <description>complexContent, content of restriction and content with all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG014" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG015" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG016" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG017" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG018" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG019" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG020" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG021" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG022" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG023" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG024" origin="Microsoft"> + <description>complexContent, content of restriction and content with all then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG025" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG026" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG027" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG028" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG029" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG030" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG031" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG032" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG033" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG034" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG035" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG036" origin="Microsoft"> + <description>complexContent, content of restriction and content with choice then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG037" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG038" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG039" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG040" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG041" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG042" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG043" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG044" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG044.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG045" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG046" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG046.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG047" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG047.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG048" origin="Microsoft"> + <description>complexContent, content of restriction and content with sequence then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG048.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG049" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG049.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG050" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG051" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG052" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG053" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG054" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG054.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG055" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG055.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG056" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG056.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG057" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG057.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG058" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG058.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG058.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG059" origin="Microsoft"> + <description>complexContent, content of restriction and content with attribute then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG060" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG060.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG060.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG061" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG061.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG062" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG062.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG063" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG063.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG064" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG064.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG065" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG065.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG066" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG066.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG066.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG067" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG067.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG067.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG068" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG068.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG068.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG069" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG069.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG069.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG070" origin="Microsoft"> + <description>complexContent, content of restriction and content with attributeGroup then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG070.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG071" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG071.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG071.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctG072" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG072.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG073" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG073.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG074" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG074.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG075" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG075.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG076" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG076.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG077" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG077.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG078" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG078.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG079" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG079.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG080" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG080.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctG081" origin="Microsoft"> + <description>complexContent, content of restriction and content with anyAttribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctG081.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH001" origin="Microsoft"> + <description>complexContent, content of extension and content with group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH002" origin="Microsoft"> + <description>complexContent, content of extension and content with group then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH003" origin="Microsoft"> + <description>complexContent, content of extension and content with group then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH004" origin="Microsoft"> + <description>complexContent, content of extension and content with group then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH005" origin="Microsoft"> + <description>complexContent, content of extension and content with group then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH006" origin="Microsoft"> + <description>complexContent, content of extension and content with group then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH007" origin="Microsoft"> + <description>complexContent, content of extension and content with group then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH008" origin="Microsoft"> + <description>complexContent, content of extension and content with group then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH009" origin="Microsoft"> + <description>complexContent, content of extension and content with group then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH010" origin="Microsoft"> + <description>complexContent, content of extension and content with group then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH011" origin="Microsoft"> + <description>complexContent, content of extension and content with group then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH012" origin="Microsoft"> + <description>complexContent, content of extension and content with group then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH013" origin="Microsoft"> + <description>complexContent, content of extension and content with all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH014" origin="Microsoft"> + <description>complexContent, content of extension and content with all then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH015" origin="Microsoft"> + <description>complexContent, content of extension and content with all then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH016" origin="Microsoft"> + <description>complexContent, content of extension and content with all then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH017" origin="Microsoft"> + <description>complexContent, content of extension and content with all then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH018" origin="Microsoft"> + <description>complexContent, content of extension and content with all then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH019" origin="Microsoft"> + <description>complexContent, content of extension and content with all then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH020" origin="Microsoft"> + <description>complexContent, content of extension and content with all then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH021" origin="Microsoft"> + <description>complexContent, content of extension and content with all then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH022" origin="Microsoft"> + <description>complexContent, content of extension and content with all then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH023" origin="Microsoft"> + <description>complexContent, content of extension and content with all then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH024" origin="Microsoft"> + <description>complexContent, content of extension and content with all then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH025" origin="Microsoft"> + <description>complexContent, content of extension and content with choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH026" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH027" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH028" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH029" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH030" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH031" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH032" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH033" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH034" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH035" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH036" origin="Microsoft"> + <description>complexContent, content of extension and content with choice then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH037" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH038" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH039" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH040" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH041" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH042" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH043" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH044" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH044.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH045" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH046" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH046.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH047" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH047.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH048" origin="Microsoft"> + <description>complexContent, content of extension and content with sequence then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH048.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH049" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH049.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH050" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH051" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH052" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH053" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH054" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH054.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH055" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH055.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH056" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH056.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH057" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH057.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH058" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH058.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH058.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH059" origin="Microsoft"> + <description>complexContent, content of extension and content with attribute then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH060" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH060.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH060.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH061" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH061.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH062" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH062.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH063" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH063.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH064" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH064.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH065" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH065.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH066" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH066.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH066.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH067" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH067.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH067.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH068" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH068.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH068.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH069" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH069.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH069.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH070" origin="Microsoft"> + <description>complexContent, content of extension and content with attributeGroup then two anyAttributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH070.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH071" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH071.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH071.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctH072" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then annotation</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH072.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH073" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then group</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH073.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH074" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then all</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH074.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH075" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then choice</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH075.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH076" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then sequence</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH076.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH077" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then attribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH077.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH078" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then two attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH078.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH079" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH079.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH080" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then two attributeGroups</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH080.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH081" origin="Microsoft"> + <description>complexContent, content of extension and content with anyAttribute then anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH081.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctH082" origin="Microsoft"> + <description>complexContent, content of extension and content with group then anyAttribute using a list</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH082.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctH082.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI001" origin="Microsoft"> + <description>Two complex types with name = 'fooType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI002" origin="Microsoft"> + <description>complexType and simpleType with name = 'fooType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI003" origin="Microsoft"> + <description>complexType with name = 'fooType' , global attribute with name='fooType'</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI004" origin="Microsoft"> + <description>complexType with attribute final = '' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI005" origin="Microsoft"> + <description>complexType with attribute final = '' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI006" origin="Microsoft"> + <description>complexType with attribute final = '#all' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI007" origin="Microsoft"> + <description>complexType with attribute final = '#all' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI008" origin="Microsoft"> + <description>complexType with attribute final = 'restriction' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI009" origin="Microsoft"> + <description>complexType with attribute final = 'restriction' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI010" origin="Microsoft"> + <description>complexType with attribute final = 'extension' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI011" origin="Microsoft"> + <description>complexType with attribute final = 'extension' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI012" origin="Microsoft"> + <description>complexType with attribute final = 'restriction extension' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI013" origin="Microsoft"> + <description>complexType with attribute final = 'restriction extension' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI014" origin="Microsoft"> + <description>schema with finalDefault = '' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI015" origin="Microsoft"> + <description>schema with finalDefault = '' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI016" origin="Microsoft"> + <description>schema with finalDefault = '#all' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI017" origin="Microsoft"> + <description>schema with finalDefault = '#all' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI018" origin="Microsoft"> + <description>schema with finalDefault = '#all' and final='' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI019" origin="Microsoft"> + <description>schema with finalDefault = '#all' and final='' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI020" origin="Microsoft"> + <description>schema with finalDefault = 'restriction' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI021" origin="Microsoft"> + <description>schema with finalDefault = 'restriction' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI022" origin="Microsoft"> + <description>schema with finalDefault = 'restriction' and final='extension' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI023" origin="Microsoft"> + <description>schema with finalDefault = 'extension' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI024" origin="Microsoft"> + <description>schema with finalDefault = 'extension' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctI025" origin="Microsoft"> + <description>schema with finalDefault = 'extension' and final='restriction' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI026" origin="Microsoft"> + <description>schema with finalDefault = 'restriction extension' and final='restriction' , derived complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI027" origin="Microsoft"> + <description>schema with finalDefault = 'restriction extension' and final='extension' , derived complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI028" origin="Microsoft"> + <description>complexType with attribute block = '' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI029" origin="Microsoft"> + <description>complexType with attribute block = '' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI030" origin="Microsoft"> + <description>complexType with attribute block = '#all' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI030.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI031" origin="Microsoft"> + <description>complexType with attribute block = '#all' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI032" origin="Microsoft"> + <description>complexType with attribute block = 'restriction' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI033" origin="Microsoft"> + <description>complexType with attribute block = 'restriction' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI034" origin="Microsoft"> + <description>complexType with attribute block = 'extension' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI035" origin="Microsoft"> + <description>complexType with attribute block = 'extension' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI035.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI036" origin="Microsoft"> + <description>schema with blockDefault = '' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI037" origin="Microsoft"> + <description>schema with blockDefault = '' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI038" origin="Microsoft"> + <description>schema with blockDefault = '#all' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI038.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI039" origin="Microsoft"> + <description>schema with blockDefault = '#all' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI040" origin="Microsoft"> + <description>schema with blockDefault = '#all' and block='' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI041" origin="Microsoft"> + <description>schema with blockDefault = '#all' and block='' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI042" origin="Microsoft"> + <description>schema with blockDefault = 'restriction' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI042.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI043" origin="Microsoft"> + <description>schema with blockDefault = 'restriction' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI044" origin="Microsoft"> + <description>schema with blockDefault = 'restriction' and block='extension' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI044.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI045" origin="Microsoft"> + <description>schema with blockDefault = 'extension' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI045.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI046" origin="Microsoft"> + <description>schema with blockDefault = 'extension' , use xsi:type of substituted complexType by restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI046.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI047" origin="Microsoft"> + <description>schema with blockDefault = 'extension' and block='restriction' , use xsi:type of substituted complexType by extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI047.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctI048" origin="Microsoft"> + <description>complexType with attribute abstract = 'true' , instance document element has type as complexType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI048.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI049" origin="Microsoft"> + <description>complexType with attribute abstract = 'true' , instance document element has xsi:type as complexType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI049.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctI050" origin="Microsoft"> + <description>complexType with attribute abstract = 'true' , derived complexType from abstract used by instance document element</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI050.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctI050.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctJ001" origin="Microsoft"> + <description>complexContent with base = a complexType definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctJ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctJ001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctJ002" origin="Microsoft"> + <description>complexContent with base = a simpleType definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctJ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctJ003" origin="Microsoft"> + <description>complexContent with base = internal type</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctJ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctK001" origin="Microsoft"> + <description>simpleContent with base = a complexType definition whose parent base is a simpleType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctK001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctK001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctK002" origin="Microsoft"> + <description>simpleContent with base = a complexType definition whose parent base is a complexType</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctK002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctL001" origin="Microsoft"> + <description>content is empty. instance document element has text</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL002" origin="Microsoft"> + <description>content is empty. instance document element has element children</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL003" origin="Microsoft"> + <description>content is empty. instance document element is empty</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL004" origin="Microsoft"> + <description>simpleContent. instance document element has element children</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL005" origin="Microsoft"> + <description>content is element only. instance document element has element children</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL006" origin="Microsoft"> + <description>content is element only. instance document element has character information</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL007" origin="Microsoft"> + <description>content is element only. instance document element only whitespace</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL008" origin="Microsoft"> + <description>content is element only. instance document elements in same order as type definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL009" origin="Microsoft"> + <description>content is element only. instance document elements are in a different order from type definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL010" origin="Microsoft"> + <description>content is element only. instance document element has element children not in schema</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL011" origin="Microsoft"> + <description>content is mixed. instance document elements in same order as type definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL012" origin="Microsoft"> + <description>content is mixed. instance document elements are in a different order from type definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL013" origin="Microsoft"> + <description>content has attributes defined. instance document has attributes missing</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL014" origin="Microsoft"> + <description>content has attributes defined. instance document has attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL015" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'skip' instance document has attributes missing</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL016" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'skip' instance document has attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL017" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'lax' instance document has attributes missing</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL018" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'lax' instance document has attributes</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL019" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'strict' instance document has attributes missing</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL020" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'strict' instance document has attributes but namespace does have definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="ctL021" origin="Microsoft"> + <description>content has attribute wildcard, processContents = 'strict' instance document has attributes and namespace has definition</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctL021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctL022" origin="Microsoft"> + <description>Regression #67200 - ability to use abstract complexType as xsi:type using inline schemas</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="bug67200.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="bug67200.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctM001" origin="Microsoft"> + <description>complexType with base type a simpleType. derivation = restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctM001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctM002" origin="Microsoft"> + <description>complexType with base type a simpleType. derivation = extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctM002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctM002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctM003" origin="Microsoft"> + <description>two attribute use pairs have same name and target namespace</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctM003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctM004" origin="Microsoft"> + <description>two attributes with different names both have types derived from ID</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctM004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctN001" origin="Microsoft"> + <description>derivation=extension. final of base type not extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctN002" origin="Microsoft"> + <description>derivation=extension. final of base type is extension</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctN003" origin="Microsoft"> + <description>derivation=extension. Attribute wildcard ##local in base type. Derived type has wildcard with ##any namespace constraint.</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctN004" origin="Microsoft"> + <description>derivation=extension. Attribute wildcard ##any in base type. Derived type has wildcard with ##local namespace constraint.</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctN004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctO001" origin="Microsoft"> + <description>derivation=restriction. final base type not restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctO002" origin="Microsoft"> + <description>derivation=restriction. final base type is restriction</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctO003" origin="Microsoft"> + <description>derivation=restriction. Attribute wildcard in base type. Derived type has attribute that is valid with respect to wildcard</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctO004" origin="Microsoft"> + <description>derivation=restriction. Attribute wildcard in base type. Derived type has attribute that is not valid with respect to wildcard</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctO005" origin="Microsoft"> + <description>derivation=restriction. Derived type has Attribute Wildcard. Base type does not have attribute wildcard</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="ctO006" origin="Microsoft"> + <description>derivation=restriction. Derived type has Attribute Wildcard. Derived wildcard namespace constraint is a subset of base</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="ctO007" origin="Microsoft"> + <description>derivation=restriction. Derived type has Attribute Wildcard. Derived wildcard namespace constraint is not a subset of base</description> + <files> + <file tsDir="msxsdtest" folder="complexType" fileName="ctO007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA001" origin="Microsoft"> + <description>Empty Element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA002" origin="Microsoft"> + <description>Element with name='foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA003" origin="Microsoft"> + <description>Element with name='_foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA004" origin="Microsoft"> + <description>Element with name='name'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA005" origin="Microsoft"> + <description>Element with name='_foo-2.5??'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA006" origin="Microsoft"> + <description>Declare a dupe element with the same name</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA007" origin="Microsoft"> + <description>Name the element with an existing non-element name</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA009" origin="Microsoft"> + <description>Element with name='foo:bar'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA010" origin="Microsoft"> + <description>Element with name=':bar'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA011" origin="Microsoft"> + <description>Element with name='foo:'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA012" origin="Microsoft"> + <description>Element with name=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA013" origin="Microsoft"> + <description>Element with name=' '</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA014" origin="Microsoft"> + <description>Element with name='-2.5foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemA015" origin="Microsoft"> + <description>Element with name='xml'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA016" origin="Microsoft"> + <description>Element with name='xmlns'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemA017" origin="Microsoft"> + <description>Element with name='xsd'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemA017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemB001" origin="Microsoft"> + <description>Element with abstract='true'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemB002" origin="Microsoft"> + <description>Element with abstract='false'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemB003" origin="Microsoft"> + <description>Element with abstract='True'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemB004" origin="Microsoft"> + <description>Element with abstract='False'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemB005" origin="Microsoft"> + <description>Element with abstract=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemB006" origin="Microsoft"> + <description>Element with abstract='boolean'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemB007" origin="Microsoft"> + <description>Element with abstract='1'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemB008" origin="Microsoft"> + <description>Element with abstract='0'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemB009" origin="Microsoft"> + <description>Element with abstract='abstract'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemB010" origin="Microsoft"> + <description>Element with abstract='true false'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemB010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC001" origin="Microsoft"> + <description>Element with block='#all'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC002" origin="Microsoft"> + <description>Element with block='extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC003" origin="Microsoft"> + <description>Element with block='restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC004" origin="Microsoft"> + <description>Element with block='substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC005" origin="Microsoft"> + <description>Element with block='extension restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC006" origin="Microsoft"> + <description>Element with block='restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC007" origin="Microsoft"> + <description>Element with block='substitution extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC008" origin="Microsoft"> + <description>Element with block='extension restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC009" origin="Microsoft"> + <description>Element with block='foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC010" origin="Microsoft"> + <description>Element with block='#All'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC011" origin="Microsoft"> + <description>Element with block='Extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC012" origin="Microsoft"> + <description>Element with block='Restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC013" origin="Microsoft"> + <description>Element with block='Subsitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC014" origin="Microsoft"> + <description>Element with block='#all extension restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC015" origin="Microsoft"> + <description>Element with block='extension foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC016" origin="Microsoft"> + <description>Element with block='restriction foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC017" origin="Microsoft"> + <description>Element with block='substitution foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemC018" origin="Microsoft"> + <description>Element with block=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemC020" origin="Microsoft"> + <description>Clash with final='extension' and block='extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemC020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemD001" origin="Microsoft"> + <description>Element with default='foo' and the content is textOnly</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemD002" origin="Microsoft"> + <description>Element with default='foo' and the content is simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemD003" origin="Microsoft"> + <description>Clash with fixed='foo' and default='foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemD004" origin="Microsoft"> + <description>Element type is complexType and default is present</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemD005" origin="Microsoft"> + <description>Element with default='foo' and the content is not a textOnly</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemD006" origin="Microsoft"> + <description>Element with default=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemD006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE001" origin="Microsoft"> + <description>Element with substitutionGroup='foo' where foo is a pre-defined element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE002" origin="Microsoft"> + <description>Element with substitutionGroup='substitutionGroup'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE003" origin="Microsoft"> + <description>Element with substitutionGroup='_foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE004" origin="Microsoft"> + <description>Element with substitutionGroup='_foo-2.5??'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE005" origin="Microsoft"> + <description>Element with substitutionGroup='foo' where foo is derived from simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemE006" origin="Microsoft"> + <description>Element with substitutionGroup='-foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemE007" origin="Microsoft"> + <description>Element with substitutionGroup=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemE008" origin="Microsoft"> + <description>Element with substitutionGroup='foo' where element foo doesn't exist</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemE009" origin="Microsoft"> + <description>Element with substitutionGroup='foo' where foo directly pointing to a simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemE009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF001" origin="Microsoft"> + <description>Element with final='#all'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemF002" origin="Microsoft"> + <description>Element with final='extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemF003" origin="Microsoft"> + <description>Element with final='restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemF004" origin="Microsoft"> + <description>Element with final='substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF005" origin="Microsoft"> + <description>Element with final='extension restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemF006" origin="Microsoft"> + <description>Element with final='restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF007" origin="Microsoft"> + <description>Element with final='substitution extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF008" origin="Microsoft"> + <description>Element with final='extension restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF009" origin="Microsoft"> + <description>Element with final='foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF010" origin="Microsoft"> + <description>Element with final='#All'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF011" origin="Microsoft"> + <description>Element with final='Extension'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF012" origin="Microsoft"> + <description>Element with final='Restriction'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF013" origin="Microsoft"> + <description>Element with final='Subsitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF014" origin="Microsoft"> + <description>Element with final='#all extension restriction substitution'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF015" origin="Microsoft"> + <description>Element with final='extension foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF016" origin="Microsoft"> + <description>Element with final='restriction foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF017" origin="Microsoft"> + <description>Element with final='substitution foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemF018" origin="Microsoft"> + <description>Element with final=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemF018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemG001" origin="Microsoft"> + <description>Element with fixed='foo' and the content is textOnly</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemG001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemG002" origin="Microsoft"> + <description>Element with fixed='foo' and the content is simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemG002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemG003" origin="Microsoft"> + <description>Element type is complexType and fixed is present</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemG003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemG004" origin="Microsoft"> + <description>Element with fixed='foo' and the content is not a textOnly</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemG004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemG005" origin="Microsoft"> + <description>Element with fixed=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemG005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemH001" origin="Microsoft"> + <description>Element with its schema elementFormDefault='qualified'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemH002" origin="Microsoft"> + <description>Element with its schema elementFormDefault='unqualified'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemH003" origin="Microsoft"> + <description>Element with its schema elementFormDefault=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemH004" origin="Microsoft"> + <description>Element with its schema elementFormDefault='Qualified'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemH005" origin="Microsoft"> + <description>Element with its schema elementFormDefault='Unqualified'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemH006" origin="Microsoft"> + <description>Element with its schema elementFormDefault='qualified unqualified'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemH006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemI001" origin="Microsoft"> + <description>Element with id='foo25'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemI001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemI002" origin="Microsoft"> + <description>Element with id='_foo-2.5'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemI002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemI003" origin="Microsoft"> + <description>Element with id='25'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemI003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemI004" origin="Microsoft"> + <description>Element with id=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemI004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemI005" origin="Microsoft"> + <description>Duplicate ID='foo25' where foo25 is already exists</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemI005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ001" origin="Microsoft"> + <description>Element with maxOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ002" origin="Microsoft"> + <description>Element with maxOccurs='10'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ003" origin="Microsoft"> + <description>Element with maxOccurs='32767'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ004" origin="Microsoft"> + <description>Element with maxOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ005" origin="Microsoft"> + <description>Element with maxOccurs='010'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ006" origin="Microsoft"> + <description>Element with maxOccurs=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ007" origin="Microsoft"> + <description>Element with maxOccurs='-1'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ008" origin="Microsoft"> + <description>Element with maxOccurs='Unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ009" origin="Microsoft"> + <description>Element with minOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ010" origin="Microsoft"> + <description>Element with minOccurs='10'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ011" origin="Microsoft"> + <description>Element with minOccurs='32767'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ012" origin="Microsoft"> + <description>Element with minOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ013" origin="Microsoft"> + <description>Element with minOccurs='010'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ014" origin="Microsoft"> + <description>Element with minOccurs=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ015" origin="Microsoft"> + <description>Element with minOccurs='-1'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ016" origin="Microsoft"> + <description>Element with minOccurs='Unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ017" origin="Microsoft"> + <description>Element with minOccurs='0' maxOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ018" origin="Microsoft"> + <description>Element with minOccurs='1' maxOccurs='2'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemJ019" origin="Microsoft"> + <description>Element with minOccurs='2' maxOccurs='1'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ020" origin="Microsoft"> + <description>Element with minOccurs='unbounded' maxOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemJ021" origin="Microsoft"> + <description>Element with minOccurs='0' maxOccurs='9'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemJ021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemK001" origin="Microsoft"> + <description>Element with nillable='true'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemK002" origin="Microsoft"> + <description>Element with nillable='false'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemK003" origin="Microsoft"> + <description>Element with nillable=''</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemK004" origin="Microsoft"> + <description>Element with nillable='True'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemK005" origin="Microsoft"> + <description>Element with nillable='False'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemK006" origin="Microsoft"> + <description>Element with nillable='true false'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemK007" origin="Microsoft"> + <description>Element using nullable attribute, invalid cas.</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemK007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemL001" origin="Microsoft"> + <description>Element with ref='foo' with foo is a declared element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemL001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemL002" origin="Microsoft"> + <description>Element with ref='foo' with foo is an attribute</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemL002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemL003" origin="Microsoft"> + <description>Element with ref='foo' refering to itself</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemL003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemL004" origin="Microsoft"> + <description>Element with ref='foo' 'foo' is circular referenced</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemL004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemL005" origin="Microsoft"> + <description>Element with ref='foo' , element and attribute both are declared as 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemL005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemM001" origin="Microsoft"> + <description>Element with type='foo' with foo is a declared type</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemM001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemM002" origin="Microsoft"> + <description>Element with type='foo' with foo is an attribute</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemM002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemM003" origin="Microsoft"> + <description>Element with type='foo', foo is circular referenced</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemM003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemM004" origin="Microsoft"> + <description>Element with type='foo', type and attribute both are declared as foo</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemM004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemM005" origin="Microsoft"> + <description>Clash with ref='foo' and type='foo'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemM005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemN001" origin="Microsoft"> + <description>Element with key element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemN002" origin="Microsoft"> + <description>Element with keyref element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemN003" origin="Microsoft"> + <description>Element with unique element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemN004" origin="Microsoft"> + <description>Element with an attribute that has a non-schema namespace, a:b='c' where xmlns:a='foo' in xsd:schema</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemN005" origin="Microsoft"> + <description>Element with a non-schema namespace a:b=c</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemN006" origin="Microsoft"> + <description>Element with an attribute foo='bar' where foo is a random attribute</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemN006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemO001" origin="Microsoft"> + <description>Document with element's ref to an element with abstract=true</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemO002" origin="Microsoft"> + <description>Document with element with simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO003" origin="Microsoft"> + <description>Document with element with anonymous simpleType, no type on element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO004" origin="Microsoft"> + <description>Document with element with complexType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO005" origin="Microsoft"> + <description>Document with element with anonymous complexType, no type on element</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO006" origin="Microsoft"> + <description>Document with element with nillable = true in xsd andDocument's nil = true in xml</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO007" origin="Microsoft"> + <description>Document with element with nillable = true and Document's null = true but element has content</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemO008" origin="Microsoft"> + <description>Document with element with nillable = true andDocument's null = false in xml</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO009" origin="Microsoft"> + <description>Document with element with nillable = true</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemO010" origin="Microsoft"> + <description>Document with element with nillable = false andDocument's null = true in xml</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemO011" origin="Microsoft"> + <description>Document with element with nillable = false andDocument's null = false in xml</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemO012" origin="Microsoft"> + <description>Document with element with nillable = false</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemO012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemO012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemP001" origin="Microsoft"> + <description>Element with default and fixed present</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP002" origin="Microsoft"> + <description>Element with complexType parent with default and fixed present</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP003" origin="Microsoft"> + <description>Element with complexType parent and name</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemP004" origin="Microsoft"> + <description>Element with complexType parent and ref</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemP005" origin="Microsoft"> + <description>Element with complexType parent and nothing else</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP006" origin="Microsoft"> + <description>Element with complexType parent, and ref and name</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP007" origin="Microsoft"> + <description>Element with complexType parent, complexType child and ref</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP008" origin="Microsoft"> + <description>Element with complexType parent, simpleType child and ref</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemP009" origin="Microsoft"> + <description>Element with complexType parent, type and ref</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemP009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemQ001" origin="Microsoft"> + <description>Element with just annotation</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemQ002" origin="Microsoft"> + <description>Element with annotation and type</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemQ003" origin="Microsoft"> + <description>Element with annotation and simpleType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemQ004" origin="Microsoft"> + <description>Element with simpleType and annotation</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemQ005" origin="Microsoft"> + <description>Element with annotation and complexType</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemQ006" origin="Microsoft"> + <description>Element with complexType and annotation</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemQ007" origin="Microsoft"> + <description>Document with default minOccurs and no occurences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ008" origin="Microsoft"> + <description>Document with default maxOccurs and 1 occurrence</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ009" origin="Microsoft"> + <description>Document with default maxOccurs and 2 occurrences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ010" origin="Microsoft"> + <description>Document with minOccurs = 1 and no occurences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ011" origin="Microsoft"> + <description>Document with minOccurs = 1 and 1 occurrence</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ012" origin="Microsoft"> + <description>Document with minOccurs = 1 and 2 occurrences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ013" origin="Microsoft"> + <description>Document with minOccurs = 1 and maxOccurs = 2 and 2 occurrences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ014" origin="Microsoft"> + <description>Document with minOccurs = 1 and maxOccurs = 2 and 3 occurrences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ015" origin="Microsoft"> + <description>Document with minOccurs = 1 and maxOccurs = unbounded and 3 occurrences</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ016" origin="Microsoft"> + <description>Document with element with nillable = true and fixed=Hello</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemQ017" origin="Microsoft"> + <description>Document with fixed=Hello andDocument contains Hello</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ018" origin="Microsoft"> + <description>Document with fixed=Hello andDocument contains Hello World!</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ019" origin="Microsoft"> + <description>Document with fixed=Hello andDocument contains nothing</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemQ020" origin="Microsoft"> + <description>Document with default=Hello andDocument contains Hello</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ021" origin="Microsoft"> + <description>Document with default=Hello andDocument contains Hello World!</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemQ022" origin="Microsoft"> + <description>Document with default=Hello andDocument contains nothing</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemQ022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemQ022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemR001" origin="Microsoft"> + <description>Valid Document for Element with form=qualified and explicitly qualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemR001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemR002" origin="Microsoft"> + <description>Valid Document for Element with form=qualified and default qualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemR002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemR003" origin="Microsoft"> + <description>Valid Document for Element with form=qualified and unqualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemR004" origin="Microsoft"> + <description>Valid Document for Element with schema's elementFormDefault=qualified and explicitly qualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemR004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemR005" origin="Microsoft"> + <description>Valid Document for Element with schema's elementFormDefault=qualified and default qualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemR005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemR006" origin="Microsoft"> + <description>Valid Document for Element with schema's elementFormDefault=qualified and unqualified elements</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemR006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemS001" origin="Microsoft"> + <description>Element with final=restriction and an element affliation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemS002" origin="Microsoft"> + <description>Element with final=restriction and an element affliation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemS002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemS003" origin="Microsoft"> + <description>Element with final=extension and an element affliation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemS003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemS004" origin="Microsoft"> + <description>Element with final=extension and an element affliation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemS005" origin="Microsoft"> + <description>Element with final=#all and an element affliation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemS006" origin="Microsoft"> + <description>Element with final=#all and an element affliation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemS007" origin="Microsoft"> + <description>Element with final='' and an element affliation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemS007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemS008" origin="Microsoft"> + <description>Element with final='' and an element affliation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemS008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemS008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT001" origin="Microsoft"> + <description>Document with Element with block=restriction and a subsitution of a derivation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT002" origin="Microsoft"> + <description>Document with Element with block=restriction and a subsitution of a derivation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT003" origin="Microsoft"> + <description>Document with Element with block=extension and a subsitution of a derivation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT004" origin="Microsoft"> + <description>Document with Element with block=extension and a subsitution of a derivation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT005" origin="Microsoft"> + <description>Document with Element with block='#all' and a subsitution of a derivation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT006" origin="Microsoft"> + <description>Document with Element with block='#all' and a subsitution of a derivation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT007" origin="Microsoft"> + <description>Document with Element with block='' and a subsitution of a derivation by restriction</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT008" origin="Microsoft"> + <description>Document with Element with block='' and a subsitution of a derivation by extension</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT009" origin="Microsoft"> + <description>Element with block='list'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemT010" origin="Microsoft"> + <description>Element with block='union'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="elemT011" origin="Microsoft"> + <description>schema with blockDefault='#all' and a list used in instant XML</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT012" origin="Microsoft"> + <description>Element with block='#all' and a union used in instant XML</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT013" origin="Microsoft"> + <description>schame with blockDefault='#all' and a union used in instant XML</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT014" origin="Microsoft"> + <description>schema with block='#all' and, element with block='', a union used in instant XML</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT015" origin="Microsoft"> + <description>schema with block='#all' and, element with block='', a list used in instant XML</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT016" origin="Microsoft"> + <description>Element type=simpleType A, block='restriction', and instant XMLhas xsi:type=A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT017" origin="Microsoft"> + <description>Element type=simpleType A, block='restriction', and instant XMLhas xsi:type=B (a different type)</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT018" origin="Microsoft"> + <description>Element type=simpleType A, block='restriction', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT019" origin="Microsoft"> + <description>Element type=simpleType A, block='restriction', and instant XMLhas xsi:type=base of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT022" origin="Microsoft"> + <description>Element type=simpleType A, block='restriction', and instant XMLhas xsi:type=list of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT024" origin="Microsoft"> + <description>Element type=complexType A, block='restriction', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT025" origin="Microsoft"> + <description>Element type=complexType A, block='restriction', and instant XMLhas xsi:type=extension of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT026" origin="Microsoft"> + <description>Element type=ur-Type, block='restriction', and instant XMLhas xsi:type=union of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT027" origin="Microsoft"> + <description>Element type=ur-Type, block='restriction', and instant XMLhas xsi:type=union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT028" origin="Microsoft"> + <description>Element type=ur-Type, block='restriction', and instant XMLhas xsi:type=List of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT029" origin="Microsoft"> + <description>Element type=ur-Type, block='restriction', and instant XMLhas xsi:type=List of the Union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT030" origin="Microsoft"> + <description>Element type=simpleType A, block='extension', and instant XMLhas xsi:type=A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT031" origin="Microsoft"> + <description>Element type=simpleType A, block='extension', and instant XMLhas xsi:type=B (a different type)</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT032" origin="Microsoft"> + <description>Element type=simpleType A, block='extension', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT033" origin="Microsoft"> + <description>Element type=simpleType A, block='extension', and instant XMLhas xsi:type=base of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT033.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT038" origin="Microsoft"> + <description>Element type=complexType A, block='extension', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT039" origin="Microsoft"> + <description>Element type=complexType A, block='extension', and instant XMLhas xsi:type=extension of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT040" origin="Microsoft"> + <description>Element type=ur-Type, block='extension', and instant XMLhas xsi:type=union of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT041" origin="Microsoft"> + <description>Element type=ur-Type, block='extension', and instant XMLhas xsi:type=union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT042" origin="Microsoft"> + <description>Element type=ur-Type, block='extension', and instant XMLhas xsi:type=List of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT042.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT043" origin="Microsoft"> + <description>Element type=ur-Type, block='extension', and instant XMLhas xsi:type=List of the Union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT044" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT044.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT045" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=B (a different type)</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT045.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT046" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT046.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT047" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=base of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT047.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT048" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=Union of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT048.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT049" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=Union of A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT049.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT050" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=list of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT050.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT050.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT051" origin="Microsoft"> + <description>Element type=simpleType A, block='#all', and instant XMLhas xsi:type=list of the Union A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT051.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT051.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT052" origin="Microsoft"> + <description>Element type=complexType A, block='#all', and instant XMLhas xsi:type=restriction of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT052.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT052.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT053" origin="Microsoft"> + <description>Element type=complexType A, block='#all', and instant XMLhas xsi:type=extension of A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT053.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT053.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT054" origin="Microsoft"> + <description>Element type=ur-Type, block='#all', and instant XMLhas xsi:type=union of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT054.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT054.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT055" origin="Microsoft"> + <description>Element type=ur-Type, block='#all', and instant XMLhas xsi:type=union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT055.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT056" origin="Microsoft"> + <description>Element type=ur-Type, block='#all', and instant XMLhas xsi:type=List of simpleType A</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT056.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT057" origin="Microsoft"> + <description>Element type=ur-Type, block='#all', and instant XMLhas xsi:type=List of the Union of simpleType A and B</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT057.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemT058" origin="Microsoft"> + <description>several elements with different blocks and valid instance</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT058.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT058.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemT074" origin="Microsoft"> + <description>Element type=Union-AB, block=restriction, and instant XMLhas xsi:type=A type derived from a type in the Union</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemT074.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemT074.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemU001" origin="Microsoft"> + <description>regular expression: restriction on string '\d'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU002" origin="Microsoft"> + <description>regular expression: restriction on string '\s\d'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU003" origin="Microsoft"> + <description>regular expression: restriction on string '\s\w'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU004" origin="Microsoft"> + <description>regular expression: restriction on string 'Espan&#xF1;ola'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU005" origin="Microsoft"> + <description>regular expression: restriction on string '\p{Lu}'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU006" origin="Microsoft"> + <description>regular expression: restriction on string '\p{IsGreek}'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU007" origin="Microsoft"> + <description>regular expression: restriction on string '\P{IsGreek}'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU008" origin="Microsoft"> + <description>regular expression: restriction on string 'a*x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU009" origin="Microsoft"> + <description>regular expression: restriction on string 'a?x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU010" origin="Microsoft"> + <description>regular expression: restriction on string 'a+x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU011" origin="Microsoft"> + <description>regular expression: restriction on string '(a|b)+x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU012" origin="Microsoft"> + <description>regular expression: restriction on string '[abcde]x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU013" origin="Microsoft"> + <description>regular expression: restriction on string '[a-e]x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU014" origin="Microsoft"> + <description>regular expression: restriction on string '[-ae]x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU015" origin="Microsoft"> + <description>regular expression: restriction on string '[ae-]x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU017" origin="Microsoft"> + <description>regular expression: restriction on string '[^0-9]x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU018" origin="Microsoft"> + <description>regular expression: restriction on string '\Dx'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU019" origin="Microsoft"> + <description>regular expression: restriction on string '.x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU020" origin="Microsoft"> + <description>regular expression: restriction on string '.*abc.*'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU021" origin="Microsoft"> + <description>regular expression: restriction on string 'ab{2}x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU022" origin="Microsoft"> + <description>regular expression: restriction on string 'ab{2,4}x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU023" origin="Microsoft"> + <description>regular expression: restriction on string 'ab{2,}x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU024" origin="Microsoft"> + <description>regular expression: restriction on string '(ab){2}x'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemU025" origin="Microsoft"> + <description>regular expression: restriction on string 'chapter \d'</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemU025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemU025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemZ001" origin="Microsoft"> + <description>70881 - XmlSchema: instance element with xsi:nil='true' and xsi:type='xsd:string' causes Unknown error</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemZ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemZ001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="elemZ002" origin="Microsoft"> + <description>67493 - xsd: xsi:type should allowed predefined types as valid valu.</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemZ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemZ002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemZ003" origin="Microsoft"> + <description>72898 - subsitutionGroup has problems with deep chains</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemZ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="element" fileName="elemZ003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="elemZ004" origin="Microsoft"> + <description>maxOccurs fails to take values more than int (2147483647)</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemZ004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="elemZ005" origin="Microsoft"> + <description>validation of number data types doesn't work for top-level element declarations</description> + <files> + <file tsDir="msxsdtest" folder="element" fileName="elemZ005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupA001" origin="Microsoft"> + <description>Test id: group with an id</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupA002" origin="Microsoft"> + <description>Test id: group without an id</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupA003" origin="Microsoft"> + <description>Test id: two global groups with same id</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA004" origin="Microsoft"> + <description>Test id: two groups with same id, one from global, one inside a complexType</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA005" origin="Microsoft"> + <description>Test id: two groups with same id, one from complexType, one inside choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA006" origin="Microsoft"> + <description>Test id: two groups with same id, one from restriction and one from redefine</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA007" origin="Microsoft"> + <description>Test id: two groups with same id, one from choice and one from imported</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA008" origin="Microsoft"> + <description>Test id: two groups with same id, one from imported xsd and the other from included xsd</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA009" origin="Microsoft"> + <description>Test id:, id=''</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA010" origin="Microsoft"> + <description>Test id:, id='1'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupA011" origin="Microsoft"> + <description>Test id:, id='xmlns'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupA012" origin="Microsoft"> + <description>Test id:, id='a:b'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupA012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB001" origin="Microsoft"> + <description>Test ref: (ref is not allowed on top level), parent is schema, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB002v" origin="Microsoft"> + <description>Test ref:, parent is extension, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB003v" origin="Microsoft"> + <description>Test ref:, parent is restriction, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB004v" origin="Microsoft"> + <description>Test ref:, parent is sequence, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB005v" origin="Microsoft"> + <description>Test ref:, parent is choice, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB006v" origin="Microsoft"> + <description>Test ref:, parent is complexType, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB007" origin="Microsoft"> + <description>Test ref: (ref is not allowed on top level), parent is redefine, ref='global group'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB008" origin="Microsoft"> + <description>Test ref:, parent is extension, ref='global attributeGroup'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB009v" origin="Microsoft"> + <description>Test ref:, parent is extension, ref='global group from imported xsd'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB010v" origin="Microsoft"> + <description>Test ref:, parent is extension, ref='global group from included xsd'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupB010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupB011" origin="Microsoft"> + <description>Test ref:, parent is extension, ref='global complexType'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB012" origin="Microsoft"> + <description>Test ref: circular ref is not allowed out side of redefine, parent is sequence, ref='the root parent group's name'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB013" origin="Microsoft"> + <description>Test ref: circular ref is not allowed out side of redefine, parent is choice, ref='the root parent group's name'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB014" origin="Microsoft"> + <description>Test ref: circular ref is not allowed out side of redefine, parent is extension, ref='the root parent group's name'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB015" origin="Microsoft"> + <description>Test ref: circular ref is not allowed out side of redefine, parent is restriction, ref='the root parent group's name'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB016" origin="Microsoft"> + <description>Test ref: circular ref is not allowed out side of redefine, parent is restriction, reference a global group 'A', which has a choice that reference another globle group 'B', which as a sequence that reference 'A'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupB017" origin="Microsoft"> + <description>Test ref: reference a global group to restrict another complex type (a,b) to (a), parent is restriction</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupB017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupC001" origin="Microsoft"> + <description>Test name: two global groups with same name</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC002" origin="Microsoft"> + <description>Test name: group without an name</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC003" origin="Microsoft"> + <description>Test name: two groups with same name, one from global one from redefine</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC004" origin="Microsoft"> + <description>Test name: name attribute is only allowed in toplevel, parent is extension</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC005" origin="Microsoft"> + <description>Test name: name attribute is only allowed in toplevel, parent is restriction</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC006" origin="Microsoft"> + <description>Test name: name attribute is only allowed in toplevel, parent is sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC007" origin="Microsoft"> + <description>Test name: name attribute is only allowed in toplevel, parent is choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC008" origin="Microsoft"> + <description>Test name: name attribute is only allowed in toplevel, parent is complexType</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC009" origin="Microsoft"> + <description>Test name:, name=''</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC010" origin="Microsoft"> + <description>Test name:, name='1'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupC011" origin="Microsoft"> + <description>Test name:, name='xmlns'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupC012" origin="Microsoft"> + <description>Test name:, name='a:b'</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupC012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupD001" origin="Microsoft"> + <description>Test particles: parent is schema can't have minOccurs, minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupD001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupD002" origin="Microsoft"> + <description>Test particles: parent is redefine can't have minOccurs, minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupD002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupD003" origin="Microsoft"> + <description>Test particles: parent is schema can't have maxOccurs, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupD003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupD004" origin="Microsoft"> + <description>Test particles: parent is redefine can't have maxOccurs, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupD004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupE001" origin="Microsoft"> + <description>parent is extension: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupE001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupE002" origin="Microsoft"> + <description>parent is extension: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupE003v" origin="Microsoft"> + <description>parent is extension: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupE003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupE003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupE004v" origin="Microsoft"> + <description>parent is extension: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupE004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupE004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupE005v" origin="Microsoft"> + <description>parent is extension: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupE005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupE005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF001v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF002v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF003v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF004v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF005v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF006v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF007v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF008v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF009v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=0, maxOccurs=999999999999999999999</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF010v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF011v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF012v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF013v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF014v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF015v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF016v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF017v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF018v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF019v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupF020" origin="Microsoft"> + <description>parent is extension: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupF021v" origin="Microsoft"> + <description>parent is extension: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupF021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupF022" origin="Microsoft"> + <description>parent is extension: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupF023" origin="Microsoft"> + <description>parent is extension: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupF024" origin="Microsoft"> + <description>parent is extension: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupF025" origin="Microsoft"> + <description>parent is extension: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupF025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupG001" origin="Microsoft"> + <description>parent is restriction: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupG001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupG002" origin="Microsoft"> + <description>parent is restriction: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupG002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupG003v" origin="Microsoft"> + <description>parent is restriction: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupG003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupG003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupG004v" origin="Microsoft"> + <description>parent is restriction: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupG004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupG004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupG005v" origin="Microsoft"> + <description>parent is restriction: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupG005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupG005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH001v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH002v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH003v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH004v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH005v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH006v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH007v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH008v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH009v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=0, maxOccurs=999999999999999</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH010v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH011v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH012v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH013v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH014v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH015v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH016v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH017v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH018v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH019v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupH020" origin="Microsoft"> + <description>parent is restriction: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupH021v" origin="Microsoft"> + <description>parent is restriction: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupH021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupH022" origin="Microsoft"> + <description>parent is restriction: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupH023" origin="Microsoft"> + <description>parent is restriction: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupH024" origin="Microsoft"> + <description>parent is restriction: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupH025" origin="Microsoft"> + <description>parent is restriction: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupH025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupI001" origin="Microsoft"> + <description>parent is sequence: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupI001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupI002" origin="Microsoft"> + <description>parent is sequence: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupI002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupI003v" origin="Microsoft"> + <description>parent is sequence: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupI003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupI003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupI004v" origin="Microsoft"> + <description>parent is sequence: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupI004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupI004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupI005v" origin="Microsoft"> + <description>parent is sequence: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupI005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupI005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ001v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ002v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ003v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ004v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ005v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ006v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ007v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ008v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ009v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=0, maxOccurs=99999999999</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ010v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ011v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ012v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ013v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ014v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ015v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ016v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ017v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ018v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ019v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupJ020" origin="Microsoft"> + <description>parent is sequence: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupJ021v" origin="Microsoft"> + <description>parent is sequence: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupJ021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupJ022" origin="Microsoft"> + <description>parent is sequence: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupJ023" origin="Microsoft"> + <description>parent is sequence: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupJ024" origin="Microsoft"> + <description>parent is sequence: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupJ025" origin="Microsoft"> + <description>parent is sequence: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupJ025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupK001" origin="Microsoft"> + <description>parent is choice: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupK001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupK002" origin="Microsoft"> + <description>parent is choice: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupK002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupK003v" origin="Microsoft"> + <description>parent is choice: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupK003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupK003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupK004v" origin="Microsoft"> + <description>parent is choice: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupK004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupK004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupK005v" origin="Microsoft"> + <description>parent is choice: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupK005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupK005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL001v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL002v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL003v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL004v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL005v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL006v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL007" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL008v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL009v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=0, maxOccurs=999999999</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL010v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL011v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL012v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL013v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL014v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL015v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL016v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL017v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL018v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL019v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupL020" origin="Microsoft"> + <description>parent is choice: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupL021v" origin="Microsoft"> + <description>parent is choice: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupL021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupL022" origin="Microsoft"> + <description>parent is choice: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupL023" origin="Microsoft"> + <description>parent is choice: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupL024" origin="Microsoft"> + <description>parent is choice: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupL025" origin="Microsoft"> + <description>parent is choice: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupL025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupM001" origin="Microsoft"> + <description>parent is complexType: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupM001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupM002" origin="Microsoft"> + <description>parent is complexType: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupM002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupM003v" origin="Microsoft"> + <description>parent is complexType: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupM003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupM003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupM004v" origin="Microsoft"> + <description>parent is complexType: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupM004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupM004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupM005v" origin="Microsoft"> + <description>parent is complexType: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupM005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupM005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN001v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN002v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN003v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN004v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN005v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN006v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN007v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN008v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN009v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=0, maxOccurs=999999999</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN010v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN011v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN012v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN013v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN014v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN015v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN016v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN017v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN018v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN019v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupN020" origin="Microsoft"> + <description>parent is complexType: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupN021v" origin="Microsoft"> + <description>parent is complexType: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupN021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupN022" origin="Microsoft"> + <description>parent is complexType: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupN023" origin="Microsoft"> + <description>parent is complexType: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupN024" origin="Microsoft"> + <description>parent is complexType: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupN025" origin="Microsoft"> + <description>parent is complexType: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupN025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO001" origin="Microsoft"> + <description>Test content: annotation, one annotation as child node</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupO002" origin="Microsoft"> + <description>Test content: annotation, two annotation as child nodes</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO003" origin="Microsoft"> + <description>Test content: annotation must be the first node if present, two children, sequence follow by annotation</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO004v" origin="Microsoft"> + <description>Test content: annotation follow by all</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupO005v" origin="Microsoft"> + <description>Test content: (xml instant is invalid) annotation follow by all</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupO006v" origin="Microsoft"> + <description>Test content: annotation follow by choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupO007v" origin="Microsoft"> + <description>Test content: (xml instant is invalid) annotation follow by choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupO008v" origin="Microsoft"> + <description>Test content: annotation follow by sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="groupO009v" origin="Microsoft"> + <description>Test content: (xml instant is invalid) annotation follow by sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="group" fileName="groupO009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="groupO010" origin="Microsoft"> + <description>Test content: annotation follow by element</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO011" origin="Microsoft"> + <description>Test content: annotation follow by complexType</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO012" origin="Microsoft"> + <description>Test content: annotation follow by simpleType</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO013" origin="Microsoft"> + <description>Test content: annotation follow by attribute decl</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO014" origin="Microsoft"> + <description>Test content: child node is a sequence with a child group, which has another sequence with a child group, which has another choice with a child group</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="groupO015" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), all follow by choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO016" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), all follow by sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO017" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), choice follow by sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO018" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), sequence follow by all</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO019" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), choice follow by all</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO020" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), all follow by all</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO021" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), choice follow by choice</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO022" origin="Microsoft"> + <description>Test content: only one is allow (all | choice | sequence), sequence follow by sequence</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO023" origin="Microsoft"> + <description>Test parent: parent is simpleType</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO024" origin="Microsoft"> + <description>Test parent: parent is element</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO025" origin="Microsoft"> + <description>Test parent: parent is attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO026" origin="Microsoft"> + <description>Test parent: parent is any</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="groupO027" origin="Microsoft"> + <description>Test parent: parent is group</description> + <files> + <file tsDir="msxsdtest" folder="group" fileName="groupO027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA001" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute = 'idName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA002" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute = 'idName' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA003" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute = 'idName' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA004" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute = 'idName' , an imported object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA005" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute = 'idName' , a redefined object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA006" origin="Microsoft"> + <description>unique Declaration with optional attribute id = '' , name attribute = 'idName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA007" origin="Microsoft"> + <description>unique Declaration with optional attribute id = '123' , name attribute = 'idName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA008" origin="Microsoft"> + <description>unique Declaration with optional attribute id = 'foo123' , name attribute='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA009" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA010" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , attribute object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA011" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , element object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA012" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , simpleType object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA013" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , complexType object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA014" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , group object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA015" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , notation object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA016" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , another unique idConstraint object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA017" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , another unique idConstraint object in a different targetNamespace with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA018" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , another key idConstraint object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA019" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , another keyref idConstraint object with a name='fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA020" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is defined globally</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA021" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA022" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA023" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA024" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA025" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of group</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA026" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA027" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA028" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA029" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'fooID' , object is a child of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA030" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = 'a:b'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA031" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA032" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = '1foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA033" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = '_foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA034" origin="Microsoft"> + <description>unique Declaration with mandatory attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA035" origin="Microsoft"> + <description>unique Declaration with id, name and refer attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA036" origin="Microsoft"> + <description>unique Declaration with attribute of non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA037" origin="Microsoft"> + <description>unique element, content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA038" origin="Microsoft"> + <description>unique element, content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA039" origin="Microsoft"> + <description>unique element, content of selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA040" origin="Microsoft"> + <description>unique element, content of selector and field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA041" origin="Microsoft"> + <description>unique element, content of annotation then selector and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA042" origin="Microsoft"> + <description>unique element, content of selector then annotation and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA043" origin="Microsoft"> + <description>unique element, content of selector then field and then annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA044" origin="Microsoft"> + <description>unique element, content of annotation then field and then selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA045" origin="Microsoft"> + <description>unique element, content of selector and then two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idA046" origin="Microsoft"> + <description>unique element, content of two selectors and then a field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA047" origin="Microsoft"> + <description>unique element, content of field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA047.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA048" origin="Microsoft"> + <description>unique element, content of annotation then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA048.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA049" origin="Microsoft"> + <description>unique element, content of two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA050" origin="Microsoft"> + <description>unique element, content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA051" origin="Microsoft"> + <description>unique element, content of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA052" origin="Microsoft"> + <description>unique element, content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA053" origin="Microsoft"> + <description>unique element, content of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA054" origin="Microsoft"> + <description>unique element, content of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA054.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA055" origin="Microsoft"> + <description>unique element, content of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA055.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA056" origin="Microsoft"> + <description>unique element, content of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA057" origin="Microsoft"> + <description>unique element, content of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA057.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA058" origin="Microsoft"> + <description>unique element, content of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA059" origin="Microsoft"> + <description>unique element, content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idA060" origin="Microsoft"> + <description>unique element, content of any</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idA060.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB001" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute = 'keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB002" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute = 'keyName' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB003" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute = 'keyName' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB004" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute = 'keyName' , an imported object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB005" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute = 'keyName' , a redefined object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB006" origin="Microsoft"> + <description>key Declaration with optional attribute id = '' , name attribute = 'keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB007" origin="Microsoft"> + <description>key Declaration with optional attribute id = '123' , name attribute = 'keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB008" origin="Microsoft"> + <description>key Declaration with optional attribute id = 'foo123' , name attribute='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB009" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB010" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , attribute object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB011" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , element object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB012" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , simpleType object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB013" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , complexType object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB014" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , group object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB015" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , notation object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB016" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , another unique idConstraint object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB017" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , another key idConstraint object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB018" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , another key idConstraint object in a different targetNamespace with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB019" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , another keyref idConstraint object with a name='keyName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB020" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is defined globally</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB021" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB022" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB023" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB024" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB025" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of group</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB026" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB027" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB028" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB029" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'keyName' , object is a child of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB030" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = 'a:b'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB031" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB032" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = '1foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB033" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = '_foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB034" origin="Microsoft"> + <description>key Declaration with mandatory attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB035" origin="Microsoft"> + <description>key Declaration with id, name and refer attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB036" origin="Microsoft"> + <description>key Declaration with attribute of non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB037" origin="Microsoft"> + <description>key element, content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB038" origin="Microsoft"> + <description>key element, content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB039" origin="Microsoft"> + <description>key element, content of selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB040" origin="Microsoft"> + <description>key element, content of selector and field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB041" origin="Microsoft"> + <description>key element, content of annotation then selector and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB042" origin="Microsoft"> + <description>key element, content of selector then annotation and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB043" origin="Microsoft"> + <description>key element, content of selector then field and then annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB044" origin="Microsoft"> + <description>key element, content of annotation then field and then selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB045" origin="Microsoft"> + <description>key element, content of selector and then two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idB046" origin="Microsoft"> + <description>key element, content of two selectors and then a field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB047" origin="Microsoft"> + <description>key element, content of field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB047.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB048" origin="Microsoft"> + <description>key element, content of annotation then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB048.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB049" origin="Microsoft"> + <description>key element, content of two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB050" origin="Microsoft"> + <description>key element, content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB051" origin="Microsoft"> + <description>key element, content of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB052" origin="Microsoft"> + <description>key element, content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB053" origin="Microsoft"> + <description>key element, content of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB054" origin="Microsoft"> + <description>key element, content of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB054.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB055" origin="Microsoft"> + <description>key element, content of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB055.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB056" origin="Microsoft"> + <description>key element, content of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB057" origin="Microsoft"> + <description>key element, content of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB057.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB058" origin="Microsoft"> + <description>key element, content of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB059" origin="Microsoft"> + <description>key element, content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idB060" origin="Microsoft"> + <description>key element, content of any</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idB060.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC001" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute = 'keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC002" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute = 'keyrefName' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC003" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute = 'keyrefName' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC004" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute = 'keyrefName' , an imported object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC005" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute = 'keyrefName' , a redefined object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC006" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = '' , name attribute = 'keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC007" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = '123' , name attribute = 'keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC008" origin="Microsoft"> + <description>keyref Declaration with optional attribute id = 'foo123' , name attribute='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC009" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC010" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , attribute object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC011" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , element object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC012" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , simpleType object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC013" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , complexType object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC014" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , group object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC015" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , notation object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC016" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , another unique idConstraint object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC017" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , another key idConstraint object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC018" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , another keyref idConstraint object with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC019" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , another keyref idConstraint object in a different targetNamespace with a name='keyrefName'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC020" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is defined globally</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC021" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC022" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC023" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC024" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC025" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of group</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC026" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC027" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC028" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC029" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'keyrefName' , object is a child of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC030" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = 'a:b'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC031" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC032" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = '1foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC033" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = '_foo'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC034" origin="Microsoft"> + <description>keyref Declaration with mandatory attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC035" origin="Microsoft"> + <description>keyref Declaration with id, name and refer (referenced key element exists in local namespace) attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC035.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC036" origin="Microsoft"> + <description>keyref Declaration with id, name and refer (referenced key element exists in target namespace) attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC038" origin="Microsoft"> + <description>keyref Declaration with id, name and refer (referenced key element does not exist) attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC039" origin="Microsoft"> + <description>keyref Declaration with attribute of non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC039.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC040" origin="Microsoft"> + <description>keyref element, content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC041" origin="Microsoft"> + <description>keyref element, content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC042" origin="Microsoft"> + <description>keyref element, content of selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC043" origin="Microsoft"> + <description>keyref element, content of selector and field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC043.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC044" origin="Microsoft"> + <description>keyref element, content of annotation then selector and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC044.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC045" origin="Microsoft"> + <description>keyref element, content of selector then annotation and then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC045.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC046" origin="Microsoft"> + <description>keyref element, content of selector then field and then annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC047" origin="Microsoft"> + <description>keyref element, content of annotation then field and then selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC047.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC048" origin="Microsoft"> + <description>keyref element, content of selector and then two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC048.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idC049" origin="Microsoft"> + <description>keyref element, content of two selectors and then a field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC050" origin="Microsoft"> + <description>keyref element, content of field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC051" origin="Microsoft"> + <description>keyref element, content of annotation then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC052" origin="Microsoft"> + <description>keyref element, content of two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC053" origin="Microsoft"> + <description>keyref element, content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC054" origin="Microsoft"> + <description>keyref element, content of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC054.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC055" origin="Microsoft"> + <description>keyref element, content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC055.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC056" origin="Microsoft"> + <description>keyref element, content of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC057" origin="Microsoft"> + <description>keyref element, content of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC057.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC058" origin="Microsoft"> + <description>keyref element, content of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC059" origin="Microsoft"> + <description>keyref element, content of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC060" origin="Microsoft"> + <description>keyref element, content of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC060.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC061" origin="Microsoft"> + <description>keyref element, content of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC061.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC062" origin="Microsoft"> + <description>keyref element, content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC062.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idC063" origin="Microsoft"> + <description>keyref element, content of any</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idC063.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD001" origin="Microsoft"> + <description>selector Declaration with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD002" origin="Microsoft"> + <description>selector Declaration with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD003" origin="Microsoft"> + <description>selector Declaration with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD004" origin="Microsoft"> + <description>selector Declaration with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD005" origin="Microsoft"> + <description>selector Declaration with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD006" origin="Microsoft"> + <description>selector Declaration with attribute name = 'fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD007" origin="Microsoft"> + <description>selector is defined globally</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD008" origin="Microsoft"> + <description>selector is a child of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD009" origin="Microsoft"> + <description>selector is a child of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD010" origin="Microsoft"> + <description>selector is a child of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD011" origin="Microsoft"> + <description>selector is a child of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD012" origin="Microsoft"> + <description>selector Declaration with mandatory attribute xpath = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD013" origin="Microsoft"> + <description>selector Declaration with mandatory attribute xpath contains valid Xpath subset</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD014" origin="Microsoft"> + <description>selector Declaration with mandatory attribute xpath contains invalid Xpath subset</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD015" origin="Microsoft"> + <description>selector Declaration with attribute of non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD016" origin="Microsoft"> + <description>selector element, content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idD017" origin="Microsoft"> + <description>selector element, content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD018" origin="Microsoft"> + <description>selector element, content of selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD019" origin="Microsoft"> + <description>selector element, content of selector and field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD020" origin="Microsoft"> + <description>selector element, content of field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD021" origin="Microsoft"> + <description>selector element, content of annotation then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD022" origin="Microsoft"> + <description>selector element, content of two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD023" origin="Microsoft"> + <description>selector element, content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD024" origin="Microsoft"> + <description>selector element, content of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD025" origin="Microsoft"> + <description>selector element, content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD026" origin="Microsoft"> + <description>selector element, content of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD027" origin="Microsoft"> + <description>selector element, content of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD028" origin="Microsoft"> + <description>selector element, content of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD029" origin="Microsoft"> + <description>selector element, content of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD030" origin="Microsoft"> + <description>selector element, content of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD031" origin="Microsoft"> + <description>selector element, content of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD032" origin="Microsoft"> + <description>selector element, content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idD033" origin="Microsoft"> + <description>selector element, content of any</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idD033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE001" origin="Microsoft"> + <description>field Declaration with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE002" origin="Microsoft"> + <description>field Declaration with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE003" origin="Microsoft"> + <description>field Declaration with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE004" origin="Microsoft"> + <description>field Declaration with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE005" origin="Microsoft"> + <description>field Declaration with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE006" origin="Microsoft"> + <description>field Declaration with attribute name = 'fooID'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE007" origin="Microsoft"> + <description>field is defined globally</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE008" origin="Microsoft"> + <description>field is a child of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE009" origin="Microsoft"> + <description>field is a child of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE010" origin="Microsoft"> + <description>field is a child of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE011" origin="Microsoft"> + <description>field is a child of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE012" origin="Microsoft"> + <description>field Declaration with mandatory attribute xpath = ''</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE013" origin="Microsoft"> + <description>field Declaration with mandatory attribute xpath contains valid Xpath subset</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE014" origin="Microsoft"> + <description>field Declaration with mandatory attribute xpath contains invalid Xpath subset</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE015" origin="Microsoft"> + <description>field Declaration with attribute of non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE016" origin="Microsoft"> + <description>field element, content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idE017" origin="Microsoft"> + <description>field element, content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE018" origin="Microsoft"> + <description>field element, content of selector</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE019" origin="Microsoft"> + <description>field element, content of selector and field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE020" origin="Microsoft"> + <description>field element, content of field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE021" origin="Microsoft"> + <description>field element, content of annotation then field</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE022" origin="Microsoft"> + <description>field element, content of two fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE023" origin="Microsoft"> + <description>field element, content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE024" origin="Microsoft"> + <description>field element, content of element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE025" origin="Microsoft"> + <description>field element, content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE026" origin="Microsoft"> + <description>field element, content of complexType</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE027" origin="Microsoft"> + <description>field element, content of unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE028" origin="Microsoft"> + <description>field element, content of key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE029" origin="Microsoft"> + <description>field element, content of keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE030" origin="Microsoft"> + <description>field element, content of all</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE031" origin="Microsoft"> + <description>field element, content of choice</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE032" origin="Microsoft"> + <description>field element, content of sequence</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idE033" origin="Microsoft"> + <description>field element, content of any</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idE033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idF001" origin="Microsoft"> + <description>unique category, selector element evaluates to a node-set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF003" origin="Microsoft"> + <description>unique category, field element evaluates to an empty-node set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF004" origin="Microsoft"> + <description>unique category, field element evaluates to a node-set with only one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF005" origin="Microsoft"> + <description>unique category, field element evaluates to a node-set with more than one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF006" origin="Microsoft"> + <description>unique category, field element evaluates to a node-set with a member that is not a simple type</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF007" origin="Microsoft"> + <description>unique category, all qualified node set members are unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF008" origin="Microsoft"> + <description>unique category, not all qualified node set members are unique</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF009" origin="Microsoft"> + <description>unique category, qualified node set contains members with an element declaration whose {nillable} is true.</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF010" origin="Microsoft"> + <description>unique category, instance member (a)=3.0, number; instance member (b)=3, number</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF011" origin="Microsoft"> + <description>unique category, instance member (a)=3.0, string; instance member (b)=3, string</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF012" origin="Microsoft"> + <description>unique category, instance member (a)=1, boolean; instance member (b)=1, number</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF013" origin="Microsoft"> + <description>unique category, instance member (a)=1, float; instance member (b)=1, decimal</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF014" origin="Microsoft"> + <description>unique category, instance member (a)=1, float; instance member (b)=1, unsignedByte</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF015" origin="Microsoft"> + <description>unique category, instance member (a)=1, decimal; instance member (b)=1, unsignedByte</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF016" origin="Microsoft"> + <description>unique category, instance member (a)=test, string; instance member (b)='', string defined using default='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF017" origin="Microsoft"> + <description>unique category, instance member (a)=test, string; instance member (b)='', string defined using fixed='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF018" origin="Microsoft"> + <description>unique category, instance member (a)=nil, string; instance member (b)=nil</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idF019" origin="Microsoft"> + <description>unique category, qualified node set defined with the use of multiple field schema elements pointing to only elements</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF020" origin="Microsoft"> + <description>unique category, qualified node set defined with the use of multiple field schema elements pointing to only attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF021" origin="Microsoft"> + <description>unique category, qualified node set defined with the use of multiple field schema elements pointing to a mix of elements and attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF022" origin="Microsoft"> + <description>unique category, selector points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF023" origin="Microsoft"> + <description>unique category, selector points to element outside of targetNamespace in a non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF024" origin="Microsoft"> + <description>unique category, selector points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF025" origin="Microsoft"> + <description>unique category, selector points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF026" origin="Microsoft"> + <description>unique category, selector points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF027" origin="Microsoft"> + <description>unique category, field points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF028" origin="Microsoft"> + <description>unique category, field points to element outside targetNamespace in non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF029" origin="Microsoft"> + <description>unique category, field points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF030" origin="Microsoft"> + <description>unique category, field points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF031" origin="Microsoft"> + <description>unique category, field points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF032" origin="Microsoft"> + <description>unique category, field points to attribute within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF033" origin="Microsoft"> + <description>unique category, field points to attribute from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF034" origin="Microsoft"> + <description>unique category, field points to attribute from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF035" origin="Microsoft"> + <description>unique category, field points to attribute outside targetNamespace in non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idF036" origin="Microsoft"> + <description>unique category, field points to attribute used only within xsi:type substitution</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idF036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG001" origin="Microsoft"> + <description>key category, selector element evaluates to a node-set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG003" origin="Microsoft"> + <description>key category, field element evaluates to an empty-node set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG004" origin="Microsoft"> + <description>key category, field element evaluates to a node-set with only one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG005" origin="Microsoft"> + <description>key category, field element evaluates to a node-set with more than one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG006" origin="Microsoft"> + <description>key category, field element evaluates to a node-set with a member that is not a simple type</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG007" origin="Microsoft"> + <description>key category, all target node set members exist in qualified node set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG008" origin="Microsoft"> + <description>key category, some target node set members do not exist in qualified node set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG009" origin="Microsoft"> + <description>key category, qualified node set contains members with an element declaration whose {nillable} is true.</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG010" origin="Microsoft"> + <description>key category, qualified node set contains members are that are not unique.</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG011" origin="Microsoft"> + <description>key category, instance member (a)=test, string; instance member (b)='', string defined using default='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG012" origin="Microsoft"> + <description>key category, instance member (a)=test, string; instance member (b)='', string defined using fixed='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG013" origin="Microsoft"> + <description>key category, qualified node set defined with the use of multiple field schema elements pointing to only elements</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG014" origin="Microsoft"> + <description>key category, qualified node set defined with the use of multiple field schema elements pointing to only attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG015" origin="Microsoft"> + <description>key category, qualified node set defined with the use of multiple field schema elements pointing to a mix of elements and attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG016" origin="Microsoft"> + <description>key category, selector points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG017" origin="Microsoft"> + <description>key category, selector points to element outside of targetNamespace in a non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG018" origin="Microsoft"> + <description>key category, selector points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG019" origin="Microsoft"> + <description>key category, selector points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG020" origin="Microsoft"> + <description>key category, selector points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG021" origin="Microsoft"> + <description>key category, field points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG022" origin="Microsoft"> + <description>key category, field points to element outside targetNamespace in non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG023" origin="Microsoft"> + <description>key category, field points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG024" origin="Microsoft"> + <description>key category, field points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG025" origin="Microsoft"> + <description>key category, field points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idG026" origin="Microsoft"> + <description>key category, field points to attribute within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG027" origin="Microsoft"> + <description>key category, field points to attribute from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG028" origin="Microsoft"> + <description>key category, field points to attribute from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG029" origin="Microsoft"> + <description>key category, field points to attribute outside targetNamespace in non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idG030" origin="Microsoft"> + <description>key category, field points to attribute used only within xsi:type substitution</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idG030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH001" origin="Microsoft"> + <description>keyref category, selector element evaluates to a node-set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH003" origin="Microsoft"> + <description>keyref category, field element evaluates to an empty-node set</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH004" origin="Microsoft"> + <description>keyref category, field element evaluates to a node-set with only one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH005" origin="Microsoft"> + <description>keyref category, field element evaluates to a node-set with more than one member</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idH006" origin="Microsoft"> + <description>keyref category, field element evaluates to a node-set with a member that is not a simple type</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idH007" origin="Microsoft"> + <description>keyref category, keyref refers to existing key element defined prior to keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH008" origin="Microsoft"> + <description>keyref category, keyref refers to existing key element defined post to keyref</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH009" origin="Microsoft"> + <description>keyref category, keyref refers to unique element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH010" origin="Microsoft"> + <description>keyref category, keyref refers to unique element whose value is nil</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idH011" origin="Microsoft"> + <description>keyref category, keyref refers to a non-existing key element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idH012" origin="Microsoft"> + <description>keyref category, keyref fields are defined in a different order than referred key fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idH013" origin="Microsoft"> + <description>keyref category, keyref has more field definitions than are defined in referred key fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idH014" origin="Microsoft"> + <description>keyref category, keyref has less field definitions than are defined in referred key fields</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idH015" origin="Microsoft"> + <description>keyref category, instance member (a)=test, string; instance member (b)='', string defined using default='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH016" origin="Microsoft"> + <description>keyref category, instance member (a)=test, string; instance member (b)='', string defined using fixed='test'</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH017" origin="Microsoft"> + <description>keyref category, qualified node set defined with the use of multiple field schema elements pointing to only elements</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH018" origin="Microsoft"> + <description>keyref category, qualified node set defined with the use of multiple field schema elements pointing to only attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH019" origin="Microsoft"> + <description>keyref category, qualified node set defined with the use of multiple field schema elements pointing to a mix of elements and attributes</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH020" origin="Microsoft"> + <description>keyref category, selector points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH021" origin="Microsoft"> + <description>keyref category, selector points to element outside of targetNamespace in a non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH022" origin="Microsoft"> + <description>keyref category, selector points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH023" origin="Microsoft"> + <description>keyref category, selector points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH024" origin="Microsoft"> + <description>keyref category, selector points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH025" origin="Microsoft"> + <description>keyref category, field points to element within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH025.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH026" origin="Microsoft"> + <description>keyref category, field points to element outside targetNamespace in non-imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH027" origin="Microsoft"> + <description>keyref category, field points to element from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH028" origin="Microsoft"> + <description>keyref category, field points to element from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH029" origin="Microsoft"> + <description>keyref category, field points to element redefined by use of substitutionGroup</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH030" origin="Microsoft"> + <description>keyref category, field points to attribute within targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH031" origin="Microsoft"> + <description>keyref category, field points to attribute from imported schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH032" origin="Microsoft"> + <description>keyref category, field points to attribute from redefined schema</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH034" origin="Microsoft"> + <description>keyref category, field points to attribute used only within xsi:type substitution</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idH035" origin="Microsoft"> + <description>keyref category, keyref refering to a keyref object instead of unique or key</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idH035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI001" origin="Microsoft"> + <description>selector xpath='' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI002" origin="Microsoft"> + <description>selector xpath='.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI003" origin="Microsoft"> + <description>selector xpath='/' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI004" origin="Microsoft"> + <description>selector xpath='//' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI005" origin="Microsoft"> + <description>selector xpath='|' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI006" origin="Microsoft"> + <description>selector xpath='child::' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI007" origin="Microsoft"> + <description>selector xpath='| qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI008" origin="Microsoft"> + <description>selector xpath='qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI009" origin="Microsoft"> + <description>selector xpath='child::qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI010" origin="Microsoft"> + <description>selector xpath='qname' , field contains * . Prefix is undefined</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI011" origin="Microsoft"> + <description>selector xpath='*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI012" origin="Microsoft"> + <description>selector xpath='ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI013" origin="Microsoft"> + <description>selector xpath='child::ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI014" origin="Microsoft"> + <description>selector xpath='ncname :*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI015" origin="Microsoft"> + <description>selector xpath='ncname: *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI016" origin="Microsoft"> + <description>selector xpath='ncname : *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI017" origin="Microsoft"> + <description>selector xpath=' ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI018" origin="Microsoft"> + <description>selector xpath='.//' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI019" origin="Microsoft"> + <description>selector xpath='.//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI020" origin="Microsoft"> + <description>selector xpath='.// .' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI021" origin="Microsoft"> + <description>selector xpath='. //.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI022" origin="Microsoft"> + <description>selector xpath='./ /.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI023" origin="Microsoft"> + <description>selector xpath='child: :qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI024" origin="Microsoft"> + <description>selector xpath='child ::qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI024.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI025" origin="Microsoft"> + <description>selector xpath='child:: qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI025.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI026" origin="Microsoft"> + <description>selector xpath=' .//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI026.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI027" origin="Microsoft"> + <description>selector xpath='.//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI027.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI028" origin="Microsoft"> + <description>selector xpath='.//.//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI029" origin="Microsoft"> + <description>selector xpath='.//*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI029.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI030" origin="Microsoft"> + <description>selector xpath='.//ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI030.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI031" origin="Microsoft"> + <description>selector xpath='./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI031.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI032" origin="Microsoft"> + <description>selector xpath='.//./.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI032.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI033" origin="Microsoft"> + <description>selector xpath='.//./qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI034" origin="Microsoft"> + <description>selector xpath='.//./*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI035" origin="Microsoft"> + <description>selector xpath='.//./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI035.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI036" origin="Microsoft"> + <description>selector xpath='.//qname/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI037" origin="Microsoft"> + <description>selector xpath='.//qname1/qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI037.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI038" origin="Microsoft"> + <description>selector xpath='.//qname1/.//qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI039" origin="Microsoft"> + <description>selector xpath='.//qname/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI039.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI040" origin="Microsoft"> + <description>selector xpath='.//qname/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI041" origin="Microsoft"> + <description>selector xpath='.//*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI042" origin="Microsoft"> + <description>selector xpath='.//*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI042.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI043" origin="Microsoft"> + <description>selector xpath='.//*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI043.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI044" origin="Microsoft"> + <description>selector xpath='.//*/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI044.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI045" origin="Microsoft"> + <description>selector xpath='.//ncname:*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI046" origin="Microsoft"> + <description>selector xpath='.//ncname:*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI046.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI047" origin="Microsoft"> + <description>selector xpath='.//ncname:*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI047.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI048" origin="Microsoft"> + <description>selector xpath='.//ncname1:*/ncname2:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI048.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI049" origin="Microsoft"> + <description>selector xpath='. | .' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI049.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI050" origin="Microsoft"> + <description>selector xpath='. | qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI050.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI051" origin="Microsoft"> + <description>selector xpath='. | *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI051.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI052" origin="Microsoft"> + <description>selector xpath='. | ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI052.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI053" origin="Microsoft"> + <description>selector xpath='. | .//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI053.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI054" origin="Microsoft"> + <description>selector xpath='. | .//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI054.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI055" origin="Microsoft"> + <description>selector xpath='. | .//*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI055.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI056" origin="Microsoft"> + <description>selector xpath='. | .//ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI056.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI057" origin="Microsoft"> + <description>selector xpath='. | .//./.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI057.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI058" origin="Microsoft"> + <description>selector xpath='. | .//./qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI058.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI059" origin="Microsoft"> + <description>selector xpath='. | .//./*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI059.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI060" origin="Microsoft"> + <description>selector xpath='. | .//./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI060.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI061" origin="Microsoft"> + <description>selector xpath='. | .//qname/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI061.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI062" origin="Microsoft"> + <description>selector xpath='. | .//qname1/qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI062.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI063" origin="Microsoft"> + <description>selector xpath='. | .//qname/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI063.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI064" origin="Microsoft"> + <description>selector xpath='. | .//qname/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI064.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI065" origin="Microsoft"> + <description>selector xpath='. | .//*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI065.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI066" origin="Microsoft"> + <description>selector xpath='. | .//*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI066.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI067" origin="Microsoft"> + <description>selector xpath='. | .//*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI067.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI068" origin="Microsoft"> + <description>selector xpath='. | .//*/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI068.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI069" origin="Microsoft"> + <description>selector xpath='. | .//ncname:*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI069.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI070" origin="Microsoft"> + <description>selector xpath='. | .//ncname:*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI070.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI071" origin="Microsoft"> + <description>selector xpath='. | .//ncname:*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI071.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI072" origin="Microsoft"> + <description>selector xpath='. | .//ncname1:*/ncname2:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI072.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI073" origin="Microsoft"> + <description>selector xpath='qname1 | .' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI073.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI074" origin="Microsoft"> + <description>selector xpath='qname1 | qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI074.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI075" origin="Microsoft"> + <description>selector xpath='qname1 | *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI075.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI076" origin="Microsoft"> + <description>selector xpath='qname1 | ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI076.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI077" origin="Microsoft"> + <description>selector xpath='qname1 | .//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI077.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI078" origin="Microsoft"> + <description>selector xpath='qname1 | .//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI078.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI079" origin="Microsoft"> + <description>selector xpath='qname1 | .//*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI079.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI080" origin="Microsoft"> + <description>selector xpath='qname1 | .//ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI080.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI081" origin="Microsoft"> + <description>selector xpath='qname1 | .//./.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI081.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI082" origin="Microsoft"> + <description>selector xpath='qname1 | .//./qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI082.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI083" origin="Microsoft"> + <description>selector xpath='qname1 | .//./*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI083.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI084" origin="Microsoft"> + <description>selector xpath='qname1 | .//./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI084.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI085" origin="Microsoft"> + <description>selector xpath='qname1 | .//qname/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI085.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI086" origin="Microsoft"> + <description>selector xpath='qname1 | .//qname1/qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI086.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI087" origin="Microsoft"> + <description>selector xpath='qname1 | .//qname/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI087.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI088" origin="Microsoft"> + <description>selector xpath='qname1 | .//qname/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI088.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI089" origin="Microsoft"> + <description>selector xpath='qname1 | .//*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI089.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI090" origin="Microsoft"> + <description>selector xpath='qname1 | .//*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI090.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI091" origin="Microsoft"> + <description>selector xpath='qname1 | .//*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI091.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI092" origin="Microsoft"> + <description>selector xpath='qname1 | .//*/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI092.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI093" origin="Microsoft"> + <description>selector xpath='qname1 | .//ncname:*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI093.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI094" origin="Microsoft"> + <description>selector xpath='qname1 | .//ncname:*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI094.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI095" origin="Microsoft"> + <description>selector xpath='qname1 | .//ncname:*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI095.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI096" origin="Microsoft"> + <description>selector xpath='qname1 | .//ncname1:*/ncname2:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI096.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI097" origin="Microsoft"> + <description>selector xpath='* | .' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI097.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI098" origin="Microsoft"> + <description>selector xpath='* | qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI098.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI099" origin="Microsoft"> + <description>selector xpath='* | *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI099.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI100" origin="Microsoft"> + <description>selector xpath='* | ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI100.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI101" origin="Microsoft"> + <description>selector xpath='* | .//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI101.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI102" origin="Microsoft"> + <description>selector xpath='* | .//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI102.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI103" origin="Microsoft"> + <description>selector xpath='* | .//*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI103.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI104" origin="Microsoft"> + <description>selector xpath='* | .//ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI104.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI105" origin="Microsoft"> + <description>selector xpath='* | .//./.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI105.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI106" origin="Microsoft"> + <description>selector xpath='* | .//./qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI106.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI107" origin="Microsoft"> + <description>selector xpath='* | .//./*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI107.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI108" origin="Microsoft"> + <description>selector xpath='* | .//./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI108.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI109" origin="Microsoft"> + <description>selector xpath='* | .//qname/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI109.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI110" origin="Microsoft"> + <description>selector xpath='* | .//qname1/qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI110.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI111" origin="Microsoft"> + <description>selector xpath='* | .//qname/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI111.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI112" origin="Microsoft"> + <description>selector xpath='* | .//qname/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI112.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI113" origin="Microsoft"> + <description>selector xpath='* | .//*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI113.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI114" origin="Microsoft"> + <description>selector xpath='* | .//*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI114.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI115" origin="Microsoft"> + <description>selector xpath='* | .//*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI115.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI116" origin="Microsoft"> + <description>selector xpath='* | .//*/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI116.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI117" origin="Microsoft"> + <description>selector xpath='* | .//ncname:*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI117.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI118" origin="Microsoft"> + <description>selector xpath='* | .//ncname:*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI118.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI119" origin="Microsoft"> + <description>selector xpath='* | .//ncname:*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI119.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI120" origin="Microsoft"> + <description>selector xpath='* | .//ncname1:*/ncname2:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI120.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI121" origin="Microsoft"> + <description>selector xpath='ncname1:* | .' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI121.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI122" origin="Microsoft"> + <description>selector xpath='ncname1:* | qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI122.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI123" origin="Microsoft"> + <description>selector xpath='ncname1:* | *' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI123.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI124" origin="Microsoft"> + <description>selector xpath='ncname1:* | ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI124.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI125" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI125.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI126" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI126.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI127" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI127.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI128" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI128.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI129" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//./.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI129.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI130" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//./qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI130.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI131" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//./*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI131.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI132" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//./ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI132.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI133" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//qname/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI133.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI134" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//qname1/qname2' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI134.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI135" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//qname/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI135.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI136" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//qname/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI136.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI137" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI137.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI138" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI138.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI139" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI139.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI140" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//*/ncname:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI140.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI141" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//ncname:*/.' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI141.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI142" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//ncname:*/qname' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI142.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI143" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//ncname:*/*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI143.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI144" origin="Microsoft"> + <description>selector xpath='ncname1:* | .//ncname1:*/ncname2:*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI144.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idI145" origin="Microsoft"> + <description>selector xpath='self::*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI145.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI146" origin="Microsoft"> + <description>selector xpath='descendant-or-self::*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI146.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI147" origin="Microsoft"> + <description>selector xpath='descendant::*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI147.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI148" origin="Microsoft"> + <description>selector xpath='attribute::*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI148.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI149" origin="Microsoft"> + <description>selector xpath='@*' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI149.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI150" origin="Microsoft"> + <description>selector xpath='self::node()' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI150.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI151" origin="Microsoft"> + <description>selector xpath='qname[type='predicate']' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI151.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idI152" origin="Microsoft"> + <description>selector xpath='qname[predicate]' , field contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idI152.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ001" origin="Microsoft"> + <description>field xpath='' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ002" origin="Microsoft"> + <description>field xpath='@' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ003" origin="Microsoft"> + <description>field xpath='attribute::' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ004" origin="Microsoft"> + <description>field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ005" origin="Microsoft"> + <description>field xpath='/' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ006" origin="Microsoft"> + <description>field xpath='//' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ007" origin="Microsoft"> + <description>field xpath='|' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ008" origin="Microsoft"> + <description>field xpath='| qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ009" origin="Microsoft"> + <description>field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ010" origin="Microsoft"> + <description>field xpath='child::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ011" origin="Microsoft"> + <description>field xpath='qname' , selector contains * . Prefix is undefined</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ012" origin="Microsoft"> + <description>field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ013" origin="Microsoft"> + <description>field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ014" origin="Microsoft"> + <description>field xpath='child::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ015" origin="Microsoft"> + <description>field xpath='ncname :*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ016" origin="Microsoft"> + <description>field xpath='ncname: *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ017" origin="Microsoft"> + <description>field xpath='ncname : *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ018" origin="Microsoft"> + <description>field xpath=' ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ019" origin="Microsoft"> + <description>field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ020" origin="Microsoft"> + <description>field xpath='attribute::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ021" origin="Microsoft"> + <description>field xpath='@ *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ022" origin="Microsoft"> + <description>field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ023" origin="Microsoft"> + <description>field xpath='attribute::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ023.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ024" origin="Microsoft"> + <description>field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ024.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ025" origin="Microsoft"> + <description>field xpath='.///@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ026" origin="Microsoft"> + <description>field xpath='.//' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ027" origin="Microsoft"> + <description>field xpath='.//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ027.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ028" origin="Microsoft"> + <description>field xpath='.// .' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ028.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ029" origin="Microsoft"> + <description>field xpath='. //.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ029.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ030" origin="Microsoft"> + <description>field xpath='./ /.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ031" origin="Microsoft"> + <description>field xpath=' .//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ031.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ032" origin="Microsoft"> + <description>field xpath='attribute: :qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ033" origin="Microsoft"> + <description>field xpath='attribute ::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ034" origin="Microsoft"> + <description>field xpath='attribute:: qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ035" origin="Microsoft"> + <description>field xpath='.//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ035.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ036" origin="Microsoft"> + <description>field xpath='.//.//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ037" origin="Microsoft"> + <description>field xpath='.//*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ037.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ038" origin="Microsoft"> + <description>field xpath='.//ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ038.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ039" origin="Microsoft"> + <description>field xpath='.//@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ039.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ040" origin="Microsoft"> + <description>field xpath='.//@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ041" origin="Microsoft"> + <description>field xpath='.//@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ042" origin="Microsoft"> + <description>field xpath='./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ042.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ043" origin="Microsoft"> + <description>field xpath='.//./.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ043.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ044" origin="Microsoft"> + <description>field xpath='.//./qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ044.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ045" origin="Microsoft"> + <description>field xpath='.//./*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ046" origin="Microsoft"> + <description>field xpath='.//./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ046.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ047" origin="Microsoft"> + <description>field xpath='.//./@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ047.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ048" origin="Microsoft"> + <description>field xpath='.//./@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ048.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ049" origin="Microsoft"> + <description>field xpath='.//./@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ049.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ050" origin="Microsoft"> + <description>field xpath='.//qname/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ050.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ051" origin="Microsoft"> + <description>field xpath='.//qname1/qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ051.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ052" origin="Microsoft"> + <description>field xpath='.//qname1/.//qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ053" origin="Microsoft"> + <description>field xpath='.//qname/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ053.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ054" origin="Microsoft"> + <description>field xpath='.//qname/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ054.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ055" origin="Microsoft"> + <description>field xpath='.//qname1/@qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ055.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ056" origin="Microsoft"> + <description>field xpath='.//qname1/.//@qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ057" origin="Microsoft"> + <description>field xpath='.//qname/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ057.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ058" origin="Microsoft"> + <description>field xpath='.//qname/@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ058.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ059" origin="Microsoft"> + <description>field xpath='.//*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ059.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ060" origin="Microsoft"> + <description>field xpath='.//*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ060.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ061" origin="Microsoft"> + <description>field xpath='.//*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ061.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ062" origin="Microsoft"> + <description>field xpath='.//*/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ062.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ063" origin="Microsoft"> + <description>field xpath='.//*/@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ063.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ064" origin="Microsoft"> + <description>field xpath='.//*/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ064.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ065" origin="Microsoft"> + <description>field xpath='.//*/@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ065.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ066" origin="Microsoft"> + <description>field xpath='.//ncname:*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ066.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ067" origin="Microsoft"> + <description>field xpath='.//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ067.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ068" origin="Microsoft"> + <description>field xpath='.//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ068.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ069" origin="Microsoft"> + <description>field xpath='.//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ069.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ070" origin="Microsoft"> + <description>field xpath='.//ncname:*/@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ070.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ071" origin="Microsoft"> + <description>field xpath='.//ncname:*/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ071.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ072" origin="Microsoft"> + <description>field xpath='.//ncname1:*/@ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ072.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ073" origin="Microsoft"> + <description>field xpath='. | .' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ073.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ074" origin="Microsoft"> + <description>field xpath='. | qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ074.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ075" origin="Microsoft"> + <description>field xpath='. | *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ075.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ076" origin="Microsoft"> + <description>field xpath='. | ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ076.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ077" origin="Microsoft"> + <description>field xpath='. | @qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ077.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ078" origin="Microsoft"> + <description>field xpath='. | @*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ078.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ079" origin="Microsoft"> + <description>field xpath='. | @ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ079.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ080" origin="Microsoft"> + <description>field xpath='. | .//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ080.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ081" origin="Microsoft"> + <description>field xpath='. | .//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ081.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ082" origin="Microsoft"> + <description>field xpath='. | .//*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ082.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ083" origin="Microsoft"> + <description>field xpath='. | .//ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ083.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ084" origin="Microsoft"> + <description>field xpath='. | .//@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ084.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ085" origin="Microsoft"> + <description>field xpath='. | .//@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ085.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ086" origin="Microsoft"> + <description>field xpath='. | .//@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ086.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ087" origin="Microsoft"> + <description>field xpath='. | .//./.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ087.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ088" origin="Microsoft"> + <description>field xpath='. | .//./qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ088.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ089" origin="Microsoft"> + <description>field xpath='. | .//./*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ089.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ090" origin="Microsoft"> + <description>field xpath='. | .//./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ090.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ091" origin="Microsoft"> + <description>field xpath='. | .//./@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ091.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ092" origin="Microsoft"> + <description>field xpath='. | .//./@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ092.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ093" origin="Microsoft"> + <description>field xpath='. | .//./@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ093.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ094" origin="Microsoft"> + <description>field xpath='. | .//qname/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ094.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ095" origin="Microsoft"> + <description>field xpath='. | .//qname1/qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ095.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ096" origin="Microsoft"> + <description>field xpath='. | .//qname/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ096.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ097" origin="Microsoft"> + <description>field xpath='. | .//qname/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ097.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ098" origin="Microsoft"> + <description>field xpath='. | .//qname1/@qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ098.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ099" origin="Microsoft"> + <description>field xpath='. | .//qname/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ099.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ100" origin="Microsoft"> + <description>field xpath='. | .//qname/@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ100.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ101" origin="Microsoft"> + <description>field xpath='. | .//*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ101.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ102" origin="Microsoft"> + <description>field xpath='. | .//*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ102.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ103" origin="Microsoft"> + <description>field xpath='. | .//*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ103.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ104" origin="Microsoft"> + <description>field xpath='. | .//*/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ104.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ105" origin="Microsoft"> + <description>field xpath='. | .//*/@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ105.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ106" origin="Microsoft"> + <description>field xpath='. | .//*/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ106.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ107" origin="Microsoft"> + <description>field xpath='. | .//*/@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ107.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ108" origin="Microsoft"> + <description>field xpath='. | .//ncname:*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ108.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ109" origin="Microsoft"> + <description>field xpath='. | .//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ109.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ110" origin="Microsoft"> + <description>field xpath='. | .//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ110.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ111" origin="Microsoft"> + <description>field xpath='. | .//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ111.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ112" origin="Microsoft"> + <description>field xpath='. | .//ncname:*/@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ112.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ113" origin="Microsoft"> + <description>field xpath='. | .//ncname:*/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ113.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ114" origin="Microsoft"> + <description>field xpath='. | .//ncname1:*/@ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ114.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ115" origin="Microsoft"> + <description>field xpath='qname1 | .' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ115.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ116" origin="Microsoft"> + <description>field xpath='qname1 | qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ116.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ117" origin="Microsoft"> + <description>field xpath='qname1 | *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ117.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ118" origin="Microsoft"> + <description>field xpath='qname1 | ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ118.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ119" origin="Microsoft"> + <description>field xpath='qname1 | @qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ119.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ120" origin="Microsoft"> + <description>field xpath='qname1 | @*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ120.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ121" origin="Microsoft"> + <description>field xpath='qname1 | @ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ121.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ122" origin="Microsoft"> + <description>field xpath='@qname1 | @qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ122.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ123" origin="Microsoft"> + <description>field xpath='@qname1 | @*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ123.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ124" origin="Microsoft"> + <description>field xpath='@qname1 | @ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ124.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ125" origin="Microsoft"> + <description>field xpath='qname1 | .//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ125.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ126" origin="Microsoft"> + <description>field xpath='qname1 | .//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ126.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ127" origin="Microsoft"> + <description>field xpath='qname1 | .//*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ127.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ128" origin="Microsoft"> + <description>field xpath='qname1 | .//ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ128.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ129" origin="Microsoft"> + <description>field xpath='qname1 | .//./.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ129.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ130" origin="Microsoft"> + <description>field xpath='qname1 | .//./qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ130.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ131" origin="Microsoft"> + <description>field xpath='qname1 | .//./*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ131.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ132" origin="Microsoft"> + <description>field xpath='qname1 | .//./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ132.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ133" origin="Microsoft"> + <description>field xpath='qname1 | .//qname/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ133.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ134" origin="Microsoft"> + <description>field xpath='qname1 | .//qname1/qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ134.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ135" origin="Microsoft"> + <description>field xpath='qname1 | .//qname/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ135.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ136" origin="Microsoft"> + <description>field xpath='qname1 | .//qname/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ136.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ137" origin="Microsoft"> + <description>field xpath='qname1 | .//*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ137.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ138" origin="Microsoft"> + <description>field xpath='qname1 | .//*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ138.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ139" origin="Microsoft"> + <description>field xpath='qname1 | .//*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ139.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ140" origin="Microsoft"> + <description>field xpath='qname1 | .//*/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ140.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ141" origin="Microsoft"> + <description>field xpath='qname1 | .//ncname:*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ141.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ142" origin="Microsoft"> + <description>field xpath='qname1 | .//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ142.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ143" origin="Microsoft"> + <description>field xpath='qname1 | .//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ143.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ144" origin="Microsoft"> + <description>field xpath='qname1 | .//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ144.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ145" origin="Microsoft"> + <description>field xpath='* | .' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ145.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ146" origin="Microsoft"> + <description>field xpath='* | qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ146.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ147" origin="Microsoft"> + <description>field xpath='* | *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ147.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ148" origin="Microsoft"> + <description>field xpath='* | ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ148.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ149" origin="Microsoft"> + <description>field xpath='* | @qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ149.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ150" origin="Microsoft"> + <description>field xpath='* | @*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ150.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ151" origin="Microsoft"> + <description>field xpath='* | @ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ151.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ152" origin="Microsoft"> + <description>field xpath='@* | qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ152.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ153" origin="Microsoft"> + <description>field xpath='@* | *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ153.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ154" origin="Microsoft"> + <description>field xpath='@* | ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ154.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ155" origin="Microsoft"> + <description>field xpath='* | .//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ155.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ156" origin="Microsoft"> + <description>field xpath='* | .//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ156.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ157" origin="Microsoft"> + <description>field xpath='* | .//*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ157.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ158" origin="Microsoft"> + <description>field xpath='* | .//ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ158.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ159" origin="Microsoft"> + <description>field xpath='* | .//./.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ159.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ160" origin="Microsoft"> + <description>field xpath='* | .//./qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ160.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ161" origin="Microsoft"> + <description>field xpath='* | .//./*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ161.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ162" origin="Microsoft"> + <description>field xpath='* | .//./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ162.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ163" origin="Microsoft"> + <description>field xpath='* | .//qname/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ163.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ164" origin="Microsoft"> + <description>field xpath='* | .//qname1/qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ164.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ165" origin="Microsoft"> + <description>field xpath='* | .//qname/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ165.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ166" origin="Microsoft"> + <description>field xpath='* | .//qname/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ166.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ167" origin="Microsoft"> + <description>field xpath='* | .//*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ167.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ168" origin="Microsoft"> + <description>field xpath='* | .//*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ168.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ169" origin="Microsoft"> + <description>field xpath='* | .//*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ169.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ170" origin="Microsoft"> + <description>field xpath='* | .//*/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ170.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ171" origin="Microsoft"> + <description>field xpath='* | .//ncname:*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ171.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ172" origin="Microsoft"> + <description>field xpath='* | .//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ172.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ173" origin="Microsoft"> + <description>field xpath='* | .//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ173.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ174" origin="Microsoft"> + <description>field xpath='* | .//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ174.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ175" origin="Microsoft"> + <description>field xpath='ncname1:* | .' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ175.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ176" origin="Microsoft"> + <description>field xpath='ncname1:* | qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ176.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ177" origin="Microsoft"> + <description>field xpath='ncname1:* | *' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ177.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ178" origin="Microsoft"> + <description>field xpath='ncname1:* | ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ178.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ179" origin="Microsoft"> + <description>field xpath='ncname1:* | .//.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ179.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ180" origin="Microsoft"> + <description>field xpath='ncname1:* | .//qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ180.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ181" origin="Microsoft"> + <description>field xpath='ncname1:* | .//*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ181.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ182" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ182.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ183" origin="Microsoft"> + <description>field xpath='ncname1:* | .//./.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ183.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ184" origin="Microsoft"> + <description>field xpath='ncname1:* | .//./qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ184.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ185" origin="Microsoft"> + <description>field xpath='ncname1:* | .//./*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ185.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ186" origin="Microsoft"> + <description>field xpath='ncname1:* | .//./ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ186.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ187" origin="Microsoft"> + <description>field xpath='ncname1:* | .//qname/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ187.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ188" origin="Microsoft"> + <description>field xpath='ncname1:* | .//qname1/qname2' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ188.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ189" origin="Microsoft"> + <description>field xpath='ncname1:* | .//qname/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ189.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ190" origin="Microsoft"> + <description>field xpath='ncname1:* | .//qname/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ190.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ191" origin="Microsoft"> + <description>field xpath='ncname1:* | .//*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ191.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ192" origin="Microsoft"> + <description>field xpath='ncname1:* | .//*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ192.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ193" origin="Microsoft"> + <description>field xpath='ncname1:* | .//*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ193.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ194" origin="Microsoft"> + <description>field xpath='ncname1:* | .//*/ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ194.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ195" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*/.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ195.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ196" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ196.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ197" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ197.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ198" origin="Microsoft"> + <description>field xpath='ncname:* | .//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ198.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ199" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*/@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ199.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ200" origin="Microsoft"> + <description>field xpath='ncname1:* | .//ncname:*/@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ200.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ201" origin="Microsoft"> + <description>field xpath='ncname:* | .//ncname1:*/@ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ201.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ202" origin="Microsoft"> + <description>field xpath='@ncname1:* | .//ncname:*/qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ202.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ203" origin="Microsoft"> + <description>field xpath='@ncname1:* | .//ncname:*/*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ203.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ204" origin="Microsoft"> + <description>field xpath='@ncname:* | .//ncname1:*/ncname2:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ204.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="idJ205" origin="Microsoft"> + <description>field xpath='self::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ205.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ206" origin="Microsoft"> + <description>field xpath='descendant-or-self::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ206.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ207" origin="Microsoft"> + <description>field xpath='descendant::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ207.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ208" origin="Microsoft"> + <description>field xpath='self::node()' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ208.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ209" origin="Microsoft"> + <description>field xpath='qname[type='predicate']' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ209.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idJ210" origin="Microsoft"> + <description>field xpath='qname[predicate]' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idJ210.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idK001" origin="Microsoft"> + <description>keyref fields locating an attribute refers to a key locating an element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK002" origin="Microsoft"> + <description>keyref fields locating an attribute refers to a unique locating an element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK003" origin="Microsoft"> + <description>keyref fields locating an attribute subject to normalization refers to a key locating an element that is not normalized , prenormalization values are the same</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idK004" origin="Microsoft"> + <description>keyref fields locating an attribute subject to normalization refers to a key locating an element that is not normalized , postnormalization values are the same</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK005" origin="Microsoft"> + <description>keyref fields locating an element refers to a key locating an attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK006" origin="Microsoft"> + <description>keyref fields locating an element refers to a unique locating an attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK007" origin="Microsoft"> + <description>keyref fields locating an attribute refers to a key locating an attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK008" origin="Microsoft"> + <description>keyref fields locating an attribute refers to a unique locating an attribute</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK009" origin="Microsoft"> + <description>keyref fields locating an element refers to a key locating an element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK010" origin="Microsoft"> + <description>keyref fields locating an element refers to a unique locating an element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK011" origin="Microsoft"> + <description>constraint locating an element that is of complexType/simpleContent</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK012" origin="Microsoft"> + <description>constraint locating an element that is of complexType/complexContent</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idK013" origin="Microsoft"> + <description>constraint locating an element that is of simpleType/restriction</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK014" origin="Microsoft"> + <description>constraint locating an element that is of simpleType/list</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK015" origin="Microsoft"> + <description>constraint locating an element that is of simpleType/union</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idK016" origin="Microsoft"> + <description>keys and keyref defined locally outside of each other's scope</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idK017" origin="Microsoft"> + <description>keyref defined locally within key scope</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idK017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL001" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL002" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL003" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL004" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='child::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL005" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL006" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL007" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL008" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL009" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL010" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='child::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL011" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL012" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL013" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL014" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='child::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL015" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL016" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL017" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='attribute::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL018" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='attribute::qname' , selector contains .//qname1/qname2</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL019" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL020" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL021" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='attribute::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL022" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL023" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL024" origin="Microsoft"> + <description>Test valid XML for unique definition, field xpath='attribute::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL025" origin="Microsoft"> + <description>Test invalid XML for unique definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL026" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL027" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL027.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL028" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL029" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='child::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL030" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL031" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL032" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL033" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL034" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL035" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='child::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL036" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL036.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL037" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL037.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL038" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL039" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='child::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL039.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL040" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL040.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL041" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL042" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='attribute::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL042.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL043" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='attribute::qname' , selector contains .//qname1/qname2</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL044" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL044.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL045" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL046" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='attribute::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL046.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL047" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL047.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL048" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL048.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL049" origin="Microsoft"> + <description>Test valid XML for key definition, field xpath='attribute::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL049.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL049.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL050" origin="Microsoft"> + <description>Test invalid XML for key definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL050.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL050.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL051" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL051.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL051.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL052" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='.' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL052.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL052.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL053" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL053.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL053.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL054" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='child::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL054.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL054.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL055" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL055.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL056" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL056.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL057" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='.//qname' , selector contains qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL057.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL058" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL058.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL058.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL059" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL059.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL059.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL060" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='child::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL060.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL060.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL061" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL061.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL061.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL062" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='*' , selector contains .//qname</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL062.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL062.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL063" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL063.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL063.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL064" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='child::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL064.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL064.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL065" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL065.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL065.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL066" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL066.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL066.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL067" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='attribute::qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL067.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL067.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL068" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='attribute::qname' , selector contains .//qname1/qname2</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL068.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL068.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL069" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='@qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL069.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL069.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL070" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL070.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL070.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL071" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='attribute::*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL071.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL071.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL072" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='@*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL072.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL072.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL073" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL073.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL073.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL074" origin="Microsoft"> + <description>Test valid XML for keyref definition, field xpath='attribute::ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL074.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL074.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL075" origin="Microsoft"> + <description>Test invalid XML for keyref definition, field xpath='@ncname:*' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL075.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL075.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL076" origin="Microsoft"> + <description>Test multiple field statements field xpath='. ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL076.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL076.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL077" origin="Microsoft"> + <description>Test multiple field statements field xpath='. ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL077.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL077.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL078" origin="Microsoft"> + <description>Test multiple field statements field xpath='qname ; qname1' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL078.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL078.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL079" origin="Microsoft"> + <description>Test multiple field statements field xpath='qname ; qname1' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL079.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL079.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL080" origin="Microsoft"> + <description>Test multiple field statements field xpath='* ; qname' , selector contains *, keyref with field='*' will fail because it allow only single node.</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL080.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL080.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL081" origin="Microsoft"> + <description>Test multiple field statements field xpath='* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL081.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL081.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL082" origin="Microsoft"> + <description>Test multiple field statements field xpath='ncname:* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL082.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL082.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL083" origin="Microsoft"> + <description>Test multiple field statements field xpath='ncname:* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL083.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL083.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL084" origin="Microsoft"> + <description>Test multiple field statements field xpath='@qname ; qname1' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL084.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL084.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL085" origin="Microsoft"> + <description>Test multiple field statements field xpath='@qname ; qname1' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL085.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL085.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL086" origin="Microsoft"> + <description>Test multiple field statements field xpath='@* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL086.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL086.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL087" origin="Microsoft"> + <description>Test multiple field statements field xpath='@* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL087.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL087.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL088" origin="Microsoft"> + <description>Test multiple field statements field xpath='@ncname:* ; qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL088.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL088.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL089" origin="Microsoft"> + <description>Test multiple field statements field xpath='@ncname:* ;qname' , selector contains *</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL089.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL089.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL090" origin="Microsoft"> + <description>Test for path | path of selector field xpath='.' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL090.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL090.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL091" origin="Microsoft"> + <description>Test for path | path of selector field xpath='.' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL091.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL091.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL092" origin="Microsoft"> + <description>Test for path | path of selector field xpath='qname' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL092.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL092.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL093" origin="Microsoft"> + <description>Test for path | path of selector field xpath='qname' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL093.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL093.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL094" origin="Microsoft"> + <description>Test for path | path of selector field xpath='*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL094.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL094.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL095" origin="Microsoft"> + <description>Test for path | path of selector field xpath='*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL095.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL095.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL096" origin="Microsoft"> + <description>Test for path | path of selector field xpath='ncname:*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL096.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL096.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL097" origin="Microsoft"> + <description>Test for path | path of selector field xpath='ncname:*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL097.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL097.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL098" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@qname' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL098.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL098.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL099" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@qname' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL099.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL099.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL100" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL100.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL100.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL101" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL101.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL101.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idL102" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@ncname:*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL102.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL102.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idL103" origin="Microsoft"> + <description>Test for path | path of selector field xpath='@ncname:*' , selector contains qname | qname1</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL103.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idL103.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idZ001" origin="Microsoft"> + <description>70955 - NullReference when identityConstraint key attempting to validate missing element</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idZ002" origin="Microsoft"> + <description>70981 - invalid line numbers in XPath validation errors</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idZ003" origin="Microsoft"> + <description>71410 - XSD - Order of elements in content model of XmlSchemaElement not enforced during validation</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ003.xml" role="schema" validity="0"/> + </files> + </test> + <test id="idZ004" origin="Microsoft"> + <description>71477 - XSD IdentityConstraint: placing IC on undeclared element in instance document throws NullReferenceException</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint" fileName="idZ004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_language (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_language.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_ID.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_NMTOKEN (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NMTOKEN.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_string_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_string_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_string_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_string_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_language (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_language.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_ID.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_NMTOKEN (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NMTOKEN.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_normalizedString_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_normalizedString_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_normalizedString_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_normalizedString_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_language (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_language.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_ID.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_NMTOKEN (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NMTOKEN.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_token_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_token_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_token_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_token_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_language_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_language_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_language_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_language (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_language.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_language_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_language_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_language_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_language_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_ID.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_Name_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_Name_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_Name_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_Name_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_ID.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NCName_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NCName_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NCName_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NCName_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_ID_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_ID_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_ID_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_ID_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_ID_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_ID (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_ID_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_ID_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_ID_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_Name (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_Name.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_NCName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NCName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_IDREF (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_IDREF.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_IDREF_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREF_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREF_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREF_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_IDREFS_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_IDREFS_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_IDREFS_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_string (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_string.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NMTOKEN_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_normalizedString (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_normalizedString.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NMTOKEN_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_token (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_token.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NMTOKEN_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_NMTOKEN (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NMTOKEN.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NMTOKEN_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKEN_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKEN_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKEN_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NMTOKENS_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NMTOKENS_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NMTOKENS_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_boolean (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_boolean.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_boolean_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_boolean_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_boolean_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_boolean_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_base64Binary_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_base64Binary_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_base64Binary_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_hexBinary_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_hexBinary_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_hexBinary_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_float (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_float.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_float_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_float_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_float_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_float_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_nonPositiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_nonPositiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_negativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_negativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_positiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_positiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_decimal_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_decimal_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_decimal_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_decimal_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_nonPositiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_nonPositiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_negativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_negativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_positiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_positiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_integer_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_integer_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_integer_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_integer_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonPositiveInteger_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonPositiveInteger_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_nonPositiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_nonPositiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonPositiveInteger_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_negativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_negativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonPositiveInteger_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonPositiveInteger_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonPositiveInteger_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonPositiveInteger_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_negativeInteger_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_negativeInteger_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_nonPositiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_nonPositiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_negativeInteger_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_negativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_negativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_negativeInteger_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_negativeInteger_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_negativeInteger_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_negativeInteger_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_long_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_long_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_long_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_long_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_int_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_int_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_int_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_int_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_short_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_short_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_short_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_short_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_long (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_long.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_int (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_short (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_short.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_byte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_byte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_byte_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_byte_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_byte_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_byte_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_positiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_positiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_nonNegativeInteger_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_nonNegativeInteger_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_nonNegativeInteger_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_nonNegativeInteger_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_positiveInteger_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_positiveInteger_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_positiveInteger_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_positiveInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_positiveInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_positiveInteger_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_positiveInteger_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_positiveInteger_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_positiveInteger_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedLong_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedLong_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedLong_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedLong_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedInt_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedInt_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedInt_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedInt_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedShort_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedShort_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedShort_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedShort_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_decimal (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_decimal.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_integer (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_integer.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_nonNegativeInteger (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_nonNegativeInteger.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_unsignedLong (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedLong.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_unsignedInt (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedInt.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_unsignedShort (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedShort.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_unsignedByte (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_unsignedByte.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_unsignedByte_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_unsignedByte_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_unsignedByte_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_unsignedByte_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_double_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_double (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_double.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_double_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_double_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_double_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_base64Binary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_base64Binary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_base64Binary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_base64Binary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_hexBinary" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_hexBinary (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_hexBinary.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_hexBinary.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_float" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_float (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_float.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_decimal" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_decimal (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_decimal.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_decimal.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_integer" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_integer (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_integer.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_integer.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_nonPositiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_nonPositiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_nonPositiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_nonPositiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_negativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_negativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_negativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_negativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_long" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_long (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_long.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_long.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_int" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_int (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_int.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_short" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_short (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_short.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_short.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_byte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_byte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_byte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_byte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_nonNegativeInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_nonNegativeInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_nonNegativeInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_nonNegativeInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_positiveInteger" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_positiveInteger (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_positiveInteger.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_positiveInteger.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_unsignedLong" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_unsignedLong (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedLong.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedLong.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_unsignedInt" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_unsignedInt (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedInt.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedInt.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_unsignedShort" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_unsignedShort (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedShort.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedShort.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_unsignedByte" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_unsignedByte (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedByte.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_unsignedByte.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_double" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_double (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_double.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_double.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_anyURI (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_anyURI.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_anyURI_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_anyURI_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_anyURI_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_anyURI_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_QName_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_QName (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_QName.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_QName_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_QName_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_QName_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_language" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_language (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_language.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_language.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_boolean" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_boolean (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_boolean.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_boolean.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_NOTATION_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_NOTATION (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_NOTATION.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_NOTATION_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_NOTATION_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_NOTATION_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_Name" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_Name (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_Name.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_Name.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_NCName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_NCName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NCName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NCName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_ID" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_ID (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_ID.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_ID.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_IDREF" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_IDREF (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_IDREF.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_IDREF.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_IDREFS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_IDREFS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_IDREFS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_IDREFS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_QName" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_QName (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_QName.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_QName.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_NOTATION" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_NOTATION (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NOTATION.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_NOTATION.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_duration (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_duration.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_duration_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_time (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_time.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_gYearMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gYearMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_gYear (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gYear.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_gMonthDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gMonthDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_gDay (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gDay.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_duration_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_duration_gMonth (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_duration_gMonth.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_dateTime_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_dateTime (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_dateTime.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_dateTime_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_dateTime_date (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_dateTime_date.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_time_time" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_time_time (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_time.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_time_time.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_date_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_dateTime" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_dateTime (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_dateTime.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_dateTime.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_date_date" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_date_date (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_date.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_date_date.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_gYearMonth_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYearMonth_gYearMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYearMonth_gYearMonth (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_gYearMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYearMonth_gYearMonth.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_gYear_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gYear_gYear" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gYear_gYear (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_gYear.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gYear_gYear.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_gMonthDay_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonthDay_gMonthDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonthDay_gMonthDay (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_gMonthDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonthDay_gMonthDay.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_gDay_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gDay_gDay" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gDay_gDay (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_gDay.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gDay_gDay.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc_gMonth_string" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_string (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_string.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_string.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_normalizedString" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_normalizedString (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_normalizedString.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_normalizedString.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_token" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_token (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_token.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_token.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_NMTOKEN" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_NMTOKEN (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_NMTOKEN.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_NMTOKEN.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_NMTOKENS" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_NMTOKENS (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_NMTOKENS.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_NMTOKENS.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_anyURI" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_anyURI (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_anyURI.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_anyURI.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_duration" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_duration (invalid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_duration.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_duration.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc_gMonth_gMonth" origin="Microsoft"> + <description>Testing key/key on cross datatypes, idc_gMonth_gMonth (valid). All ancestor/descendant derived types of a given datatypes is valid unless the derivation types are different (such as IDREF_IDREFS).</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_gMonth.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="idc_gMonth_gMonth.xml" role="instance" validity="1"/> + </files> + </test> + <test id="str_int_int" origin="Microsoft"> + <description>derived type of an int from a base type int</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="str_int_int.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="str_int_int.xml" role="instance" validity="1"/> + </files> + </test> + <test id="str_float_float" origin="Microsoft"> + <description>derived type of a float from a base type float</description> + <files> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="str_float_float.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="identityConstraint/idc_datatypes" fileName="str_float_float.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA001" origin="Microsoft"> + <description>all: id, id='foo'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA002" origin="Microsoft"> + <description>all: id, id=''</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA003" origin="Microsoft"> + <description>all: id, id='0'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA004" origin="Microsoft"> + <description>all: id, id='-999'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA005" origin="Microsoft"> + <description>all: id, id='a:b'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA006" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from complexType, one from restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA007" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from complexType, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA008" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from complexType, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA009" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from restriction, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA010" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from restriction, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA011" origin="Microsoft"> + <description>all: id, two 'all' with same id, one from extension, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA012" origin="Microsoft"> + <description>all: id, two 'all' with same id, both in complexType ( complextype, has an 'all', and a 'group'), the 'group' has an 'all' [NOTE: this fails because complexType doesn't allow 'all' AND 'group' as siblings. Case created but probably not necessary]</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA013" origin="Microsoft"> + <description>all: with name as attribute</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA014" origin="Microsoft"> + <description>all: with parent complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA015" origin="Microsoft"> + <description>all: with parent restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA016" origin="Microsoft"> + <description>all: with parent extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA017" origin="Microsoft"> + <description>all: with parent group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgA018" origin="Microsoft"> + <description>all: with parent choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgA019" origin="Microsoft"> + <description>all: with parent sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgA019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa001" origin="Microsoft"> + <description>all: minOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa002" origin="Microsoft"> + <description>all: minOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa003" origin="Microsoft"> + <description>all: minOccurs = 0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgAa004" origin="Microsoft"> + <description>all: minOccurs = 2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa005" origin="Microsoft"> + <description>all: minOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa006" origin="Microsoft"> + <description>all: minOccurs = 9999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa007" origin="Microsoft"> + <description>all: minOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa008" origin="Microsoft"> + <description>all: minOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa009" origin="Microsoft"> + <description>all: minOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAa010" origin="Microsoft"> + <description>all: minOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAa010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb001" origin="Microsoft"> + <description>all: maxOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb002" origin="Microsoft"> + <description>all: maxOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb003" origin="Microsoft"> + <description>all: maxOccurs = 0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb004" origin="Microsoft"> + <description>all: maxOccurs = 2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb005" origin="Microsoft"> + <description>all: maxOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb006" origin="Microsoft"> + <description>all: maxOccurs = 9999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb007" origin="Microsoft"> + <description>all: maxOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb008" origin="Microsoft"> + <description>all: maxOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb009" origin="Microsoft"> + <description>all: maxOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgAb010" origin="Microsoft"> + <description>all: maxOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgAb010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgB001" origin="Microsoft"> + <description>all: with no child node</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgB002" origin="Microsoft"> + <description>all: with one annotation only</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgB003" origin="Microsoft"> + <description>all: with two annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgB004" origin="Microsoft"> + <description>all: with annotation follow by 1 element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgB006" origin="Microsoft"> + <description>all: with one element only</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgB007" origin="Microsoft"> + <description>all: with element follow by annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgB008" origin="Microsoft"> + <description>all: with childNode other than annotation or element, child node is simpletype</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgB009" origin="Microsoft"> + <description>all: with childNode other than annotation or element, child node is group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgB010" origin="Microsoft"> + <description>all: with childNode other than annotation or element, child node is complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgB010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgC001" origin="Microsoft"> + <description>all: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC002" origin="Microsoft"> + <description>all: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgC003" origin="Microsoft"> + <description>all: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC004" origin="Microsoft"> + <description>all: minOccurs can have value of 0 or 1 max occurs can only have 1 as value, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgC005" origin="Microsoft"> + <description>all: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC006" origin="Microsoft"> + <description>all: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgC007" origin="Microsoft"> + <description>all: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC008" origin="Microsoft"> + <description>all: minOccurs can have value of 0 or 1 max occurs can only have 1 as value, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgC009" origin="Microsoft"> + <description>all: minOccurs can have value of 0 or 1 max occurs can only have 1 as value, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgC010" origin="Microsoft"> + <description>all: elements in instant XML=0, minOccurs=absent, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC011" origin="Microsoft"> + <description>all: elements in instant XML=1, minOccurs=absent, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgC012" origin="Microsoft"> + <description>all: elements in instant XML=2, minOccurs=absent, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgC013" origin="Microsoft"> + <description>, minOccurs=absent, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgC014" origin="Microsoft"> + <description>all with default minOccurs and maxOccurs with optional element children</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgC014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgD001" origin="Microsoft"> + <description>all: with any attribute with no schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgD005" origin="Microsoft"> + <description>sequence: with any attribute with no schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgD009" origin="Microsoft"> + <description>choice: with any attribute with no schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgD013" origin="Microsoft"> + <description>RAID#67552 - test using of minOccurs=0 and allowing elements to not exists</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgD013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE001" origin="Microsoft"> + <description>sequence: id, id='foo'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE002" origin="Microsoft"> + <description>sequence: id, id=''</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE003" origin="Microsoft"> + <description>sequence: id, id='0'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE004" origin="Microsoft"> + <description>sequence: id, id='-1'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE005" origin="Microsoft"> + <description>sequence: id, id='a:b'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE006" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from complexType, one from restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE007" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from complexType, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE008" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from complexType, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE009" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from restriction, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE010" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from restriction, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE011" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, one from extension, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE012" origin="Microsoft"> + <description>sequence: id, two 'sequence' with same id, both in complexType ( complextype, has an 'all', and a 'group'), the 'group' has an 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgE013" origin="Microsoft"> + <description>sequence: with parent complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE014" origin="Microsoft"> + <description>sequence: with parent restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE015" origin="Microsoft"> + <description>sequence: with parent extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE016" origin="Microsoft"> + <description>sequence: with parent group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE017" origin="Microsoft"> + <description>sequence: with parent choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgE018" origin="Microsoft"> + <description>sequence: with parent sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgE018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgEa001" origin="Microsoft"> + <description>sequence: minOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa002" origin="Microsoft"> + <description>sequence: minOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa003" origin="Microsoft"> + <description>sequence: minOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa004" origin="Microsoft"> + <description>sequence: minOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa005" origin="Microsoft"> + <description>sequence: minOccurs = 9999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa006" origin="Microsoft"> + <description>sequence: minOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa007" origin="Microsoft"> + <description>sequence: minOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEa008" origin="Microsoft"> + <description>sequence: minOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb001" origin="Microsoft"> + <description>sequence: maxOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb002" origin="Microsoft"> + <description>sequence: maxOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb003" origin="Microsoft"> + <description>sequence: maxOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb004" origin="Microsoft"> + <description>sequence: maxOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgEb005" origin="Microsoft"> + <description>sequence: maxOccurs = 8</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgEb006" origin="Microsoft"> + <description>sequence: maxOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb007" origin="Microsoft"> + <description>sequence: maxOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgEb008" origin="Microsoft"> + <description>sequence: maxOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgEb008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgF001" origin="Microsoft"> + <description>sequence: with no child node</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF002" origin="Microsoft"> + <description>sequence: with one annotation only</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF003" origin="Microsoft"> + <description>sequence: with two annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgF004" origin="Microsoft"> + <description>sequence: with children annotation, element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF005" origin="Microsoft"> + <description>sequence: with children annotation, group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF006" origin="Microsoft"> + <description>sequence: with children annotation, choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF007" origin="Microsoft"> + <description>sequence: with children annotation, sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF008" origin="Microsoft"> + <description>sequence: with children annotation, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF009" origin="Microsoft"> + <description>sequence: with children annotation, element, group, choice, sequence, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF010" origin="Microsoft"> + <description>sequence: with children element, any, sequence, choice, group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF011" origin="Microsoft"> + <description>sequence: with children group, any, choice, element, sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF012" origin="Microsoft"> + <description>sequence: with children choice, any, group, sequence, element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF013" origin="Microsoft"> + <description>sequence: with children sequence, group, choice, element, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF014" origin="Microsoft"> + <description>sequence: with children any, sequence, group, element, choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF015" origin="Microsoft"> + <description>sequence: with children 4 elements, 4 groups</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF016" origin="Microsoft"> + <description>sequence: with children 4 groups, 4 choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF017" origin="Microsoft"> + <description>sequence: with children 4 choice, 4 sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF018" origin="Microsoft"> + <description>sequence: with children 4 sequence, 4 any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF019" origin="Microsoft"> + <description>sequence: with children 4 any, 4 elements</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgF020" origin="Microsoft"> + <description>sequence: with children element, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgF021" origin="Microsoft"> + <description>sequence: with children group, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgF022" origin="Microsoft"> + <description>sequence: with children choice, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgF023" origin="Microsoft"> + <description>sequence: with children sequence, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgF023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG001" origin="Microsoft"> + <description>sequence: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG002" origin="Microsoft"> + <description>sequence: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG003" origin="Microsoft"> + <description>sequence: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG004" origin="Microsoft"> + <description>sequence: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG005" origin="Microsoft"> + <description>sequence: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG006" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG007" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG008" origin="Microsoft"> + <description>sequence: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG009" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG010" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG011" origin="Microsoft"> + <description>sequence: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG012" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG013" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG014" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=0, maxOccurs=999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG015" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG016" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG017" origin="Microsoft"> + <description>sequence: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG018" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG019" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG020" origin="Microsoft"> + <description>sequence: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG021" origin="Microsoft"> + <description>sequence: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG021.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG022" origin="Microsoft"> + <description>sequence: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG023" origin="Microsoft"> + <description>sequence: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG024" origin="Microsoft"> + <description>sequence: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgG025" origin="Microsoft"> + <description>sequence: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG026" origin="Microsoft"> + <description>sequence: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgG027" origin="Microsoft"> + <description>sequence: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG028" origin="Microsoft"> + <description>sequence: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG029" origin="Microsoft"> + <description>sequence: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgG030" origin="Microsoft"> + <description>sequence: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgG030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH001" origin="Microsoft"> + <description>choice: id, id='foo'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH002" origin="Microsoft"> + <description>choice: id, id=''</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH003" origin="Microsoft"> + <description>choice: id, id='0'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH004" origin="Microsoft"> + <description>choice: id, id='-1'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH005" origin="Microsoft"> + <description>choice: id, id='a:b'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH006" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from complexType, one from restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH007" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from complexType, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH008" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from complexType, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH009" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from restriction, one from extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH010" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from restriction, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH011" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, one from extension, one from group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH012" origin="Microsoft"> + <description>choice: id, two 'choice' with same id, both in complexType ( complextype, has an 'all', and a 'group'), the 'group' has an 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgH013" origin="Microsoft"> + <description>choice: with parent complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH014" origin="Microsoft"> + <description>choice: with parent restriction</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH015" origin="Microsoft"> + <description>choice: with parent extension</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH016" origin="Microsoft"> + <description>choice: with parent group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH017" origin="Microsoft"> + <description>choice: with parent choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgH018" origin="Microsoft"> + <description>choice: with parent sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgH018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgHa001" origin="Microsoft"> + <description>choice: minOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa002" origin="Microsoft"> + <description>choice: minOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa003" origin="Microsoft"> + <description>choice: minOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa004" origin="Microsoft"> + <description>choice: minOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa005" origin="Microsoft"> + <description>choice: minOccurs = 9999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa006" origin="Microsoft"> + <description>choice: minOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa007" origin="Microsoft"> + <description>choice: minOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHa008" origin="Microsoft"> + <description>choice: minOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb001" origin="Microsoft"> + <description>choice: maxOccurs = empty</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb002" origin="Microsoft"> + <description>choice: maxOccurs = -1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb003" origin="Microsoft"> + <description>choice: maxOccurs = *</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb004" origin="Microsoft"> + <description>choice: maxOccurs = unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgHb005" origin="Microsoft"> + <description>choice: maxOccurs = 5</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgHb006" origin="Microsoft"> + <description>choice: maxOccurs = a</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb007" origin="Microsoft"> + <description>choice: maxOccurs = ?</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgHb008" origin="Microsoft"> + <description>choice: maxOccurs = &</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgHb008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgI001" origin="Microsoft"> + <description>choice: with no child node</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI002" origin="Microsoft"> + <description>choice: with one annotation only</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI003" origin="Microsoft"> + <description>choice: with two annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgI004" origin="Microsoft"> + <description>choice: with children annotation, element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI005" origin="Microsoft"> + <description>choice: with children annotation, group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI006" origin="Microsoft"> + <description>choice: with children annotation, choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI007" origin="Microsoft"> + <description>choice: with children annotation, sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI008" origin="Microsoft"> + <description>choice: with children annotation, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI009" origin="Microsoft"> + <description>choice: with children annotation, element, group, choice, sequence, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI010" origin="Microsoft"> + <description>choice: with children element, any, sequence, choice, group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI011" origin="Microsoft"> + <description>choice: with children group, any, choice, element, sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI012" origin="Microsoft"> + <description>choice: with children choice, any, group, sequence, element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI013" origin="Microsoft"> + <description>choice: with children sequence, group, choice, element, any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI014" origin="Microsoft"> + <description>choice: with children any, sequence, group, element, choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI015" origin="Microsoft"> + <description>choice: with children 4 elements, 4 groups</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI016" origin="Microsoft"> + <description>choice: with children 4 groups, 4 choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI017" origin="Microsoft"> + <description>choice: with children 4 choice, 4 sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI018" origin="Microsoft"> + <description>choice: with children 4 sequence, 4 any</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI019" origin="Microsoft"> + <description>choice: with children 4 any, 4 elements</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgI020" origin="Microsoft"> + <description>choice: with children element, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgI021" origin="Microsoft"> + <description>choice: with children group, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgI022" origin="Microsoft"> + <description>choice: with children choice, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgI023" origin="Microsoft"> + <description>choice: with children sequence, annotation</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgI023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ001" origin="Microsoft"> + <description>choice: check that minOccurs default is 1, minOccurs=absent, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ002" origin="Microsoft"> + <description>choice: check that maxOccurs default is 1, minOccurs=2, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ003" origin="Microsoft"> + <description>choice: check that minOccurs default is 1, elements in instant XML = 0, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ004" origin="Microsoft"> + <description>choice: check that minOccurs default is 1, elements in instant XML = 1, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ005" origin="Microsoft"> + <description>choice: check that maxOccurs default is 1, elements in instant XML = 2, minOccurs=absent, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ006" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ007" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ008" origin="Microsoft"> + <description>choice: elements in instant XML=2, minOccurs=0, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ009" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ010" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ011" origin="Microsoft"> + <description>choice: elements in instant XML=2, minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ012" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ013" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ014" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=0, maxOccurs=999999999</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ015" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ016" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ017" origin="Microsoft"> + <description>choice: elements in instant XML=2, minOccurs=1, maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ018" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ019" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ020" origin="Microsoft"> + <description>choice: elements in instant XML=2, minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ021" origin="Microsoft"> + <description>choice: elements in instant XML=0, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ021.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ022" origin="Microsoft"> + <description>choice: elements in instant XML=1, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ023" origin="Microsoft"> + <description>choice: elements in instant XML=2, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ024" origin="Microsoft"> + <description>choice: elements in instant XML=3, minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgJ025" origin="Microsoft"> + <description>choice: unbounded is not allowed as minOccurs, minOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ026" origin="Microsoft"> + <description>choice: elements in instant XML=3, maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgJ027" origin="Microsoft"> + <description>choice: minOccurs=2, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ028" origin="Microsoft"> + <description>choice: minOccurs=1, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ029" origin="Microsoft"> + <description>choice: minOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgJ030" origin="Microsoft"> + <description>choice: maxOccurs=-1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgJ030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgK001" origin="Microsoft"> + <description>sequence: with NO elements (max=min=absent), 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgK002" origin="Microsoft"> + <description>sequence: with NO elements, 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK003" origin="Microsoft"> + <description>sequence: with 1 elements, 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK004" origin="Microsoft"> + <description>sequence: with 1 elements, 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgK005" origin="Microsoft"> + <description>sequence: with 1 elements, 2 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK006" origin="Microsoft"> + <description>sequence: with 2 elements, only the 1st element is specified in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK007" origin="Microsoft"> + <description>sequence: with 2 elements, the elements are not in the defined order</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK008" origin="Microsoft"> + <description>sequence: with 2 elements, 3 elements is specified in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgK009" origin="Microsoft"> + <description>sequence: with 5 elements, all elements appeared and are in defined order</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgK010" origin="Microsoft"> + <description>sequence: with 5 elements, the last 2 elements are not in the defined order</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgK010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgL001" origin="Microsoft"> + <description>choice: with NO elements (max=min=absent), 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgL002" origin="Microsoft"> + <description>choice: with NO elements, 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgL003" origin="Microsoft"> + <description>choice: with 1 elements, 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgL004" origin="Microsoft"> + <description>choice: with 1 elements, 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgL005" origin="Microsoft"> + <description>choice: with 1 elements, 2 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgL006" origin="Microsoft"> + <description>choice: with 2 elements, 1 element in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgL007" origin="Microsoft"> + <description>choice: with 2 elements, 2 element in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgL008" origin="Microsoft"> + <description>choice: with 5 elements, 0 element in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgL009" origin="Microsoft"> + <description>choice: with 5 elements, 1 element in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgL010" origin="Microsoft"> + <description>choice: with 5 elements, an undefined element in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgL010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM002" origin="Microsoft"> + <description>all: with no elements 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM003" origin="Microsoft"> + <description>all: with 1 elements 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM004" origin="Microsoft"> + <description>all: with 1 elements 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgM005" origin="Microsoft"> + <description>all: with 1 elements 2 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM006" origin="Microsoft"> + <description>all: with 2 elements 0 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM007" origin="Microsoft"> + <description>all: with 2 elements 1 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM008" origin="Microsoft"> + <description>all: with 2 elements 2 element is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgM009" origin="Microsoft"> + <description>all: with 2 elements 2 element in different order is in the instant XML doc</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgM010" origin="Microsoft"> + <description>all: with 2 elements instant doc has all the element plus some other element from other namespace</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM011" origin="Microsoft"> + <description>all: with 5 elements instant doc has all the element in reverse order</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgM012" origin="Microsoft"> + <description>all: with 2 elements instant doc has an element that is not local or global to the declaring element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgM013" origin="Microsoft"> + <description>all: with 2 elements instant doc has a global element</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgM014" origin="Microsoft"> + <description>all: with 2 elements instant doc has the same element twice.</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgM014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN001" origin="Microsoft"> + <description>parent is sequence, more than one child sequences, each of them again have more than one sequence child node, instant XML conform to the declaration</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgN002" origin="Microsoft"> + <description>parent is sequence, more than one child sequences, each of them again have more than one sequence child node, instant XML doesn't conform to the declaration</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN003" origin="Microsoft"> + <description>parent is sequence, the instant XML has element that are of same local name but different namespace URI than in the element decl</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN004" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child ( no elements ), in the instant XML document, the sequence appear as (F1, E1, E2, F2)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN005" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, there is no element specified</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgN006" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, the sequence appear as (E1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN007" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, the sequence appear as (E1, F1, E2, F2)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN008" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, the sequence appear as (E1, F2, F1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN009" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, the sequence appear as (F1, F2, E1, E2)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN010" origin="Microsoft"> + <description>parent is sequence, has 2 sequence as child (E1,E2) (F1,F2), in the instant XML document, the sequence appear as (F1, E1, E2, F2)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN011" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (C1 | C2), in the instant XML document ( E1, F2, C2, D2)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN012" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (D1 | D2), in the instant XML document ( E1, E2, F1, F2, C1, D1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgN013" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (D1 | D2), in the instant XML document ( C1, D1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN014" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (D1 | D2), in the instant XML document ( C1, F1, D1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN015" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (D1 | D2), in the instant XML document (D1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgN016" origin="Microsoft"> + <description>parent is sequence, has 2 sequence (E1, E2) (F1,F2), and 2 choice (C1 | C2) (D1 | D2), in the instant XML document ( no element )</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgN016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="mgO001" origin="Microsoft"> + <description>all has particle with minOccurs=maxOccur = 0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO002" origin="Microsoft"> + <description>all has particle with minOccurs=maxOccur = 1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO003" origin="Microsoft"> + <description>all has particle with minOccurs=0, maxOccur = 2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO004" origin="Microsoft"> + <description>all appear under 'complexType', which is part of a complexType, and particles in all has maxOccurs=minOccurs (0 | 1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO005" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', which is part of a complexType and has maxOccurs=minOccurs (0 | 1)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO006" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO007" origin="Microsoft"> + <description>group' with 'all', appear under 'extension', whiche is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO008" origin="Microsoft"> + <description>group' with 'all', appear under 'restriction', which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO009" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO010" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO011" origin="Microsoft"> + <description>group' with 'all', appear under 'complexType', whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO012" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO013" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO014" origin="Microsoft"> + <description>group' with 'all', appear under 'extension', whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO015" origin="Microsoft"> + <description>group' with 'all', appear under 'restriction', whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO016" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' with maxOccurs=minOccurs=1, , whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO017" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=minOccurs=1 , whiche is part of a complexType, and particles in all has maxOccurs=minOccurs (absent)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO018" origin="Microsoft"> + <description>'all', appear under 'complexType' has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO019" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', all has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO020" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', whiche is part of a complexType, and particles in all has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO021" origin="Microsoft"> + <description>'all', appear under 'extension', which is part of a complexType, and has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO022" origin="Microsoft"> + <description>'all', appear under 'restriction', which is part of a complexType, and has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO023" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' with maxOccurs=minOccurs=1, , whiche is part of a complexType, and particles in all has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO024" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=minOccurs=1 , whiche is part of a complexType, and particles in all has minOccurs=0, maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO025" origin="Microsoft"> + <description>group' with 'all', appear under 'complexType', whiche is part of a complexType, and particles in all has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO026" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is part of a complexType, and particles in all has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO027" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', which is part of a complexType, and particles in all has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO028" origin="Microsoft"> + <description>'all', appear under 'extension', which is part of a complexType, and has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO029" origin="Microsoft"> + <description>'all', appear under 'restriction', which is part of a complexType, and has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO030" origin="Microsoft"> + <description>'all', and has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO031" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=minOccurs=1 , which is part of a complexType, and group ref has minOccurs=0, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO032" origin="Microsoft"> + <description>group' with 'all', appear under 'complexType', whiche is part of a complexType, and particles in all has minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO033" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is part of a complexType, and particles in all has minOccurs=1, maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgO034" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO035" origin="Microsoft"> + <description>group' with 'all', appear under 'extension', which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO036" origin="Microsoft"> + <description>group' with 'all', appear under 'restriction', whiche is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO037" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' with maxOccurs=minOccurs=1, which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgO038" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=minOccurs=1 , which is part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgO038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgP039" origin="Microsoft"> + <description>'all', appear under 'complexType', and has minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP040" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is part of a complexType, and particles in all has minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP041" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', whiche is part of a complexType, and particles in all has minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP042" origin="Microsoft"> + <description>'all', appear under 'extension', which is part of a complexType, and has minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP042.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP043" origin="Microsoft"> + <description>group' with 'all', appear under 'restriction', whiche is part of a complexType, and particles in all has minOccurs=1, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP049" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is part of a complexType, and particles in all has minOccurs=2, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP050" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', whiche is part of a complexType, and particles in all has minOccurs=2, maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP055" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' with maxOccurs=0, minOccurs=1,</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP055.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP056" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=0, minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP057" origin="Microsoft"> + <description>group' with 'all', appear under 'schema', whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP057.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP058" origin="Microsoft"> + <description>group' with 'all', appear under 'redefine', whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP059" origin="Microsoft"> + <description>group' with 'all', appear under 'extension', whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP059.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP060" origin="Microsoft"> + <description>group' with 'all', appear under 'restriction', whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP060.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP061" origin="Microsoft"> + <description>group' with 'all', appear under 'sequence' with maxOccurs=minOccurs=1 , whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP061.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgP062" origin="Microsoft"> + <description>group' with 'all', appear under 'choice' with maxOccurs=minOccurs=1 , whiche is NOT part of a complexType</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgP062.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ001" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), both under all</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ002" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), both under sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ003" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), both under choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ004" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'sequence' inside 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ005" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'choice' inside 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ006" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'choice' inside 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ007" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'sequence' inside 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ008" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one under 'choice' inside 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ009" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one under 'sequence' inside 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ010" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'sequence' inside 'sequence' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ011" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'choice' inside 'sequence' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ012" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'sequence' inside 'choice' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ013" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'all', one under 'choice' inside 'choice' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgQ014" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'sequence' inside 'sequence' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ015" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'choice' inside 'sequence' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ016" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'sequence' inside 'choice' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ017" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'sequence', one under 'choice' inside 'choice' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ018" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one under 'sequence' inside 'sequence' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ019" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one under 'choice' inside 'sequence' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ020" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one under 'sequence' inside 'choice' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="mgQ021" origin="Microsoft"> + <description>2 particles with idendical element declarations (same type), one under 'choice', one is from sequence, model is non-deterministic</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgQ021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR001" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), both under all</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR002" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), both under sequence</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR003" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), both under choice</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR004" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'sequence' inside 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR005" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'choice' inside 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR006" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'choice' inside 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR007" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'sequence' inside 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR008" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'choice' inside 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR009" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'sequence' inside 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR010" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'sequence' inside 'sequence' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR011" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'choice' inside 'sequence' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR012" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'sequence' inside 'choice' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR013" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'all', one under 'choice' inside 'choice' of 'all'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR014" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'sequence' inside 'sequence' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR015" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'choice' inside 'sequence' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR016" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'sequence' inside 'choice' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR017" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'sequence', one under 'choice' inside 'choice' of 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR018" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'sequence' inside 'sequence' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR019" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'choice' inside 'sequence' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR020" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'sequence' inside 'choice' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR021" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one under 'choice' inside 'sequence' of 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgR022" origin="Microsoft"> + <description>2 particles with idendical element declarations (different type), one under 'choice', one is from substitution group</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgR022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgS002" origin="Microsoft"> + <description>sequence must be deterministic:(a (bc | bd))</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgS002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgS003" origin="Microsoft"> + <description>sequence must be deterministic:(a | ab)</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgS003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgS004" origin="Microsoft"> + <description>sequence must be deterministic:((ab) | ( a | b))</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgS004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="mgS005" origin="Microsoft"> + <description>sequence must be deterministic:((a, b) | ( ab | b))</description> + <files> + <file tsDir="msxsdtest" folder="ModelGroups" fileName="mgS005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesA001" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), minOccurs=1, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA002" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), minOccurs=1, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA003" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), minOccurs=1, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA004" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), minOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA005" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), minOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA006" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), minOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA007" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), minOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA008" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), minOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA009" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), minOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA010" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), minOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA011" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), minOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA012" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), minOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA013" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), minOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesA014" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), minOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesA015" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), minOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesA015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB001" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), maxOccurs=1, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB002" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), maxOccurs=1, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB003" origin="Microsoft"> + <description>The {term} is a model 'all' with child content=(a), maxOccurs=1, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB004" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), maxOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB005" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), maxOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB006" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), maxOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB007" origin="Microsoft"> + <description>The {term} is a model 'sequence' with child content=(a), maxOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB008" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), maxOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB009" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), maxOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB010" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), maxOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB011" origin="Microsoft"> + <description>The {term} is a model 'choice' with child content=(a), maxOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB012" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), maxOccurs=2, instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesB013" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), maxOccurs=2, instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB014" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), maxOccurs=2, instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesB015" origin="Microsoft"> + <description>The {term} is 'any' with child content=(a), maxOccurs=2, instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesB015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC001" origin="Microsoft"> + <description>The {term} is 'any' with namespace=absent (default to ##any), instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC002" origin="Microsoft"> + <description>The {term} is 'any' with namespace=absent (default to ##any), instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC003" origin="Microsoft"> + <description>The {term} is 'any' with namespace=absent (default to ##any), instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC004" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##any, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC005" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##any, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC006" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##any, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC007" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##other, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC008" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##other, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC009" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##other, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC010" origin="Microsoft"> + <description>The {term} is 'any' with namespace=##other, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC011" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'http://xslt', instant element's namespace is 'http://xslt'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC012" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'http://xslt', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC013" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'http://xslt', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC014" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'http://xslt', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC015" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC016" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar', instant element's namespace is 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC017" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC018" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC019" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar', instant element's namespace is 'xyz'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC020" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##targetNamespace, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC021" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##targetNamespace, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC022" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##targetNamespace, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC023" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##targetNamespace, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC023.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC024" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##local, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC025" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##local, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC026" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##local, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC026.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC027" origin="Microsoft"> + <description>The {term} is 'any' with namespace= ##local, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC028" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC028.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC029" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC030" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC031" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is 'xyz'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC032" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC033" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo bar ##targetNamespace', instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC033.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC034" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##local', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC035" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##local', instant element's namespace is 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC035.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC036" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##local', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC036.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC037" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##local', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC038" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##local', instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC038.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC039" origin="Microsoft"> + <description>The {term} is 'any' with namespace= '##targetNamespace ##local', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC040" origin="Microsoft"> + <description>The {term} is 'any' with namespace= '##targetNamespace ##local', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC041" origin="Microsoft"> + <description>The {term} is 'any' with namespace= '##targetNamespace ##local', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC041.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC042" origin="Microsoft"> + <description>The {term} is 'any' with namespace= '##targetNamespace ##local', instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC042.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC043" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC043.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC043.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC044" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC044.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC044.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC045" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC045.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC045.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC046" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC046.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC046.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesC047" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC047.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesC048" origin="Microsoft"> + <description>The {term} is 'any' with namespace= 'foo ##targetNamespace bar ##local', instant element's namespace is 'xyz'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesC048.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa001" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=absent, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa002" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=absent, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDa003" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=absent, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa004" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=absent, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa005" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=absent, instant element's namespace is 'targetNamespace', the local name is not the same</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa006" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=FALSE, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa007" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=FALSE, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDa008" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=FALSE, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa009" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=FALSE, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa010" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=FALSE, instant element's namespace is 'targetNamespace', the local name is not the same</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDa011" origin="Microsoft"> + <description>The {term} is 'element' with scope=local, abstract=TRUE, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDa011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb001" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=absent, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb002" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=absent, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDb003" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=absent, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb004" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=absent, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb005" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=absent, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb006" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, instant element's namespace is targetNamespace of an imported XSD which is different from the main xsd's targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb007" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDb008" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, instant element's namespace is unqualified</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb009" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, instant element's namespace is 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb010" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, instant element's namespace is 'targetNamespace', the local name is not the same</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb010.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDb011" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, instant element's namespace is 'targetNamespace'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDb011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesDc001" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=FALSE, block =absent, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc002" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =extension, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc003" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =restriction, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc004" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =substitution', instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc005" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =#all, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc006" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =extension substitution, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc007" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =extension restriction, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc008" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =restriction substitution, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesDc009" origin="Microsoft"> + <description>The {term} is 'element' with scope=global, abstract=TRUE, block =extension substitution restriction, instant element name resolved to element declared as a valid substitution group</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesDc009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa001" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b) with minOccurs='0', and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa002" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa003" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa004" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa005" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa006" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa007" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=absent, content=all (a,b), and the instant XML has ( x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa008" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa009" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa010" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa011" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa012" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa013" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa014" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=all (a,b), and the instant XML has ( x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa015" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa016" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa016.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa017" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa018" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEa019" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa020" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa021" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=all (a,b), and the instant XML has ( x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa021.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEa022" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=all (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEa023" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=absent, content=all (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEa024" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=0, content=all (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEa025" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=2, content=all (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEa025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEb001" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb002" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb003" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb004" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb005" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb006" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb007" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=sequence (a,b), and the instant XML has ( x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb008" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb009" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb010" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb011" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb012" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb012.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb013" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb014" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=sequence (a,b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb015" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=absent, content=sequence (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEb016" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=0, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb017" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb018" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb018.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb019" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb020" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb021" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb021.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb022" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb023" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=sequence (a,b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb023.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb024" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb025" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb026" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb027" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb028" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb029" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb029.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb030" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has (a,b,a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb030.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb031" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=sequence (a,b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb031.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb032" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb033" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb033.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb034" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (b,a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb034.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb035" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb035.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb036" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb037" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (a,b,a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb037.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEb038" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (a,b,a,b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEb039" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=sequence (a,b), and the instant XML has (x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEb039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc001" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc002" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=choice (a|b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc003" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=choice (a|b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc004" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=0, maxOccurs=absent, content=choice (a|b), and the instant XML has ( x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc005" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc006" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=choice (a|b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc007" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=choice (a|b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc008" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=1, maxOccurs=absent, content=choice (a|b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc009" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=absent, content=choice (a|b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesEc010" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=0, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc011" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc012" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=choice (a|b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc013" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=choice (a|b), and the instant XML has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc014" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=1, content=choice (a|b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc015" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc015.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc016" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc017" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc018" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc019" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc020" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (b,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc021" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc022" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc023" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc023.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc024" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has (a, a, x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc025" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=absent, maxOccurs=2, content=choice (a|b), and the instant XML has ( x )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc026" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has no element</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc026.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc027" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc027.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc028" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc029" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc030" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc031" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc032" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc033" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc034" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,a,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc034.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc035" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a,a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc036" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,a,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc036.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc037" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,b,b,b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesEc038" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (a,a,a,a,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc038.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc039" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,b,b,b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc040" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (b,b,b,b,x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc040.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEc041" origin="Microsoft"> + <description>The {term} is a model group with minOccurs=2, maxOccurs=4, content=choice (a|b), and the instant XML has (x)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc041.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEc041.xml" role="instance" validity="0"/> + </files> + </test> + <test id="particlesEd001" origin="Microsoft"> + <description>The {term} is a model group with content: sequence (a,b), all(x,y), choice (m|n), and the instant XML has (a,b,x,y,m)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesEd001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesFa001" origin="Microsoft"> + <description>E drived by extension from B, B= 'all', E=same as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFa002" origin="Microsoft"> + <description>E drived by extension from B, B= 'sequence', E=same as B, same annotation properties</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFa003" origin="Microsoft"> + <description>E drived by extension from B, B= 'choice', E=same as B, different annotation properties</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFa004" origin="Microsoft"> + <description>E drived by extension from B, B= group, E=same as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFa005" origin="Microsoft"> + <description>E drived by extension from B, B= 'any', E=same as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFa005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFb001" origin="Microsoft"> + <description>E drived by extension from B, B=choice, E=sequence with B as the first content particle (follow by group)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFb002" origin="Microsoft"> + <description>E drived by extension from B, B=sequence, E=sequence with B as the first content particle (follow by all)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesFb003" origin="Microsoft"> + <description>E drived by extension from B, B=any, E=sequence with B as the first content particle (follow by choice)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesFb004" origin="Microsoft"> + <description>E drived by extension from B, B=group, E=sequence with B as the first content particle (follow by sequence)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesFb005" origin="Microsoft"> + <description>E drived by extension from B, B=any, E=sequence with B as the first content particle (follow by choice, sequence)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesFb006" origin="Microsoft"> + <description>E drived by extension from B, B=any, E=sequence with B as the first content particle (follow by choice, choice)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesFb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHa001" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' :sequence is empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa002" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a model group (P) with minOccurs=maxOccurs=1, and the (S) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa003" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a 'choice' (P) with minOccurs=maxOccurs=1, and the (S) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa004" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a 'sequence' (P) with minOccurs=maxOccurs=1, and the (S) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa005" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a model group (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa006" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a 'choice' (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa007" origin="Microsoft"> + <description>ignore pointless occurences of 'sequence' : sequence (S) appears under a 'sequence' (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'sequence'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa008" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) is empty and the group within which ( C) appears has minOccurs of 0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHa009" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) is empty and the 'choice' within which ( C) appears has minOccurs of 0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa010" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) is empty and the 'sequence' within which ( C) appears has minOccurs of 0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa011" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under group (P) with minOccurs=maxOccurs=1, and the ( C) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa012" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under 'choice' (P) with minOccurs=maxOccurs=1, and the ( C) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa013" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under 'sequence' (P) with minOccurs=maxOccurs=1, and the ( C) has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa014" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under group (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa015" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under 'choice' (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa016" origin="Microsoft"> + <description>ignore pointless occurences of 'choice' : choice ( C) appears under 'sequence' (P) with minOccurs=maxOccurs=1, and the (P) is itself among the particles of a 'choice'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa017" origin="Microsoft"> + <description>ignore pointless occurences of particles: All is empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHa018" origin="Microsoft"> + <description>ignore pointless occurences of particles: All has only one member</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHa018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesHb001" origin="Microsoft"> + <description>Forbidden: drived by restriction any : elt</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb002" origin="Microsoft"> + <description>Forbidden: drived by restriction any : all</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb003" origin="Microsoft"> + <description>Forbidden: drived by restriction any : choice</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb004" origin="Microsoft"> + <description>Forbidden: drived by restriction any : sequence</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb006" origin="Microsoft"> + <description>Forbidden: drived by restriction all : choice</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb007" origin="Microsoft"> + <description>Forbidden: drived by restriction all : sequence</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb008" origin="Microsoft"> + <description>Forbidden: drived by restriction choice : elt</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb009" origin="Microsoft"> + <description>Forbidden: drived by restriction choice : all</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb010" origin="Microsoft"> + <description>Forbidden: drived by restriction choice : sequence</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesHb011" origin="Microsoft"> + <description>Forbidden: drived by restriction sequence : elt</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesHb011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIa001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=FALSE, R nillable=FALSE</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIa003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=absent, R nillable=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIa004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=FALSE, R nillable=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIa005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=absent, R nillable=FALSE</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIa006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=FALSE, R nillable=TRUE</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIa008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B nillable=absent, R nillable=TRUE</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIb001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIb002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIb003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=ref to foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIb004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=ref to bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIb005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=ref to group which has foo only</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIb006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=ref to group which has foo and bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIb007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B name=foo, R name=ref to group which as bar only</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIb007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIc001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B targetNanespace=foo, R targetNanespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIc002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B targetNanespace=foo, R targetNanespace=bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIc003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B targetNanespace=foo, R targetNanespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIc004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B targetNanespace=absent, R targetNanespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIc005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B (B is from included XSD): B targetNanespace=foo, R targetNanespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIc006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B (B is from included XSD): B targetNanespace=absent, R targetNanespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIc007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B (B is from included XSD): B targetNanespace=absent, R targetNanespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIc007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=0, R minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=0, R minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=1, R minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesId004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=1, R minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=1, R minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=absent, R minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesId007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=absent, R minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=absent, R minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=absent, R minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId010" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=0, R minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId011" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=1, R minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesId012" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B minOccurs=2, R minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesId012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIe001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=unbounded, R maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=unbounded, R maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=unbounded, R maxOccurs=999999</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=unbounded, R maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=0, R maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=0, R maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIe007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=1, R maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=1, R maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=1, R maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIe010" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=absent, R maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe011" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=absent, R maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe012" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=absent, R maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIe013" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=absent, R maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe014" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=0, R maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIe015" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=1, R maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIe016" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B maxOccurs=2, R maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIe016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B default=absent, R default=empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B default=absent, R default=foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B default=bar, R default=foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B default=empty, R default=foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B fixed=foo', R fixed=foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B fixed=empty, R fixed=empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIf007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B fixed=foo', R fixed=bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIf008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B fixed=empty', R fixed=bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIf009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B fixed=foo', R fixed=empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIf009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=substitution, R disallowed substitutions=substitution</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=extension, R disallowed substitutions=extension</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=restriction, R disallowed substitutions=restriction</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=#all, R disallowed substitutions=sub, ext, res</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, ext, res, R disallowed substitutions=#all</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, ext, res, R disallowed substitutions=sub</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=#all, R disallowed substitutions=sub, ext</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, ext, res, R disallowed substitutions=res</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=ext, res, R disallowed substitutions=ext, sub</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg010" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub , R disallowed substitutions=res</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg011" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=res, sub, R disallowed substitutions=res, sub, ext</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg012" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, ext , R disallowed substitutions=#all</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg013" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, R disallowed substitutions=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIg014" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=absent, R disallowed substitutions=sub</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg015" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=empty, R disallowed substitutions=sub</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIg016" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B disallowed substitutions=sub, R disallowed substitutions=empty</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIg016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIh001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=foo, B final=restriciton, R type=foo, R final=restriction</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIh001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=absent, R type=anyType</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIj002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=complexType 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIj003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=complexType 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'Z' which is a drived by restriction of 'foo', R type=complexType 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=complexType 'Z' which is a drived by restriction of 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIj006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'Z' which is a drived by restriction of 'foo', R type=complexType 'Z' which is a drived by restriction of 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIj007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'Z' which is a drived by extension of 'foo', R type=complexType 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=complexType 'Z' which is a drived by extension of 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'Z' which is a drived by extension of 'foo', R type=complexType 'Y' which is a drived by extension of 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj010" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo1' drived by restriction from 'bar', R type=complexType 'foo2' drived by restriction from 'bar', which is more restricted than in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj011" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo1' drived by extension from 'bar', R type=complexType 'foo2' drived by restriction from 'bar', which is less extented than in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj012" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo1' drived by restriction from 'bar', R type=complexType 'foo2' drived by restriction from 'bar', which is less restricted than in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj013" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo1' drived by extension from 'bar', R type=complexType 'foo' drived by restriction from 'bar', which is more extented than in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj015" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=anyType</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIj016" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=complexType 'foo', R type=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIj016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk001" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType 'foo', R type=simpleType 'foo'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIk002" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType 'foo', R type=simpleType 'bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk003" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType restriction of xsd:string, R type=simpleType xsd:string</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk004" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType xsd:string, R type=simpleType restriction of xsd:string</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIk005" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with list (l1, l2), R type=simpleType with list (l1, l2)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk006" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with list (l1, l2, l3), R type=simpleType with list (l1, l2)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk007" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with list (l1, l2), R type=simpleType with list (l1, l2, l3)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk008" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with list (l1, l2)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk009" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with list (S1)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk010" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with list (S2)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk011" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with union (S1)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk012" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with union (S1, S2)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIk013" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType with union (S1, S2), R type=simpleType with union (S1, S2, S3)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk015" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType 'foo', R type=anyType</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk016" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType 'foo', R type=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk019" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=list, R type=anyType</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk020" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=union , R type=anyType</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk021" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=list, R type=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk022" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=union , R type=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk024" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=simpleType restriction of xsd:string, R type=simpleType restriction of xsd:string</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk025" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=union of simpleType s1, s2, R type=s1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesIk026" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=U1, union of simpleType s1, s2, R type=x1 which is drived by restriction from the U1.</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesIk027" origin="Microsoft"> + <description>NameAndTypedOK (elt:elt ) element R drived by restriction from element B: B type=union of simpleType s1, s2, R type=x1 which is drived by restriction from s1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesIk027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJa001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=0, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=0, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=1, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJa004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=1, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=1, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=absent, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJa007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=absent, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=absent, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=absent, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=0, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=1, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJa012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's minOccurs=2, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJa012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJb001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=unbounded, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=unbounded, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=unbounded, R's maxOccurs=999999</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=unbounded, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=0, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=0, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJb007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=1, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=1, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJb010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=absent, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=absent, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJb013" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=absent, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb014" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=0, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJb015" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJb016" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=foo, B's maxOccurs=2, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJb016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=0, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=0, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=1, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJc004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=1, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=1, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=absent, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJc007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=absent, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=absent, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=absent, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=0, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=1, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJc012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's minOccurs=2, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJc012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJd001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=unbounded, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=unbounded, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=unbounded, R's maxOccurs=999999</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=unbounded, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=0, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=0, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJd007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=1, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=1, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJd010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=absent, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=absent, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJd013" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=absent, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd014" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=0, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJd015" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJd016" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=absent, B's maxOccurs=2, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJd016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJe004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJe007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJe012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=2, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJe012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJf001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=999999</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJf007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJf010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJf013" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf014" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJf015" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJf016" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##any, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=2, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJf016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJg001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's namespace=targetNamespace, B's minOccurs=0, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJg001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJh001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's namespace=absent, The xsd's targetNameespace is absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJh001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJj001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJj004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJj007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=absent, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=0, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=1, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJj012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's minOccurs=2, R's minOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJj012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJk001" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk002" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk003" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=999999</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk004" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=unbounded, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk005" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk006" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJk007" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk008" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk009" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJk010" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk011" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk012" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJk013" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=absent, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesJk014" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=0, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesJk015" origin="Microsoft"> + <description>Particle Derivation OK (elt:Any) element R drived by restriction from wildcard (any) B : B's namespace=##other, R's targetNamespace=ref of an elt from different targetNS, B's maxOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesJk015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesK001" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=1, B' maxOccurs=1, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesK002" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=absent, B' maxOccurs=1, R's minOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesK003" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=1, B' maxOccurs=absent, R's minOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesK004" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=absent, B' maxOccurs=absent, R's minOccurs=2, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesK005" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=0, B' maxOccurs=absent, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesK006" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : B's minOccurs=0, B' maxOccurs=absent, but the element has min=max=1, R's minOccurs=0, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesK008" origin="Microsoft"> + <description>Particle Derivation OK (Elt:All - RecurseAsIfGroup) element R drived by restriction from (all) B : R has an element (min=maxOccurs=1) from a different namespace than the targetNS</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesK008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa001" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=absent, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa002" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=0, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa003" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=1, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa004" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=2, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa005" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=absent, R's maxOccurs=0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa006" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=absent, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa007" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=absent, B's maxOccurs=absent, R's minOccurs=absent, R's maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa008" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=2, R's maxOccurs=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa009" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=absent, R's maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa010" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=1, R's maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOa011" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=2, R's maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa012" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=3, R's maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa013" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=2, R's maxOccurs=3</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa014" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=3, R's maxOccurs=3</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOa015" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's minOccurs=2, B's maxOccurs=4, R's minOccurs=2, R's maxOccurs=5</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOa015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb001" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb002" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb003" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb004" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb005" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb006" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb007" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb008" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb009" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##any, R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb010" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb011" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb012" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb013" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb014" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb015" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb016" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb017" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb018" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##other, R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb019" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=bsent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb020" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb021" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb022" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb023" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb024" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb025" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb026" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb027" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb028" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb029" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb030" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb031" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb032" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb032.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb033" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb034" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb034.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb035" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb036" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##targetNamespace, R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb037" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb038" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb039" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb039.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb040" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb040.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb041" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb041.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb042" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb042.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb042.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb043" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb043.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb044" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb044.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb045" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb045.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb046" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=abce</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb046.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb047" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb047.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb047.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb048" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=foo bar', R's namespace=bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb048.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb048.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb049" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=absent</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb050" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##any</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb051" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##other</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb052" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb052.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb052.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb053" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb053.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb053.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb054" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=foo bar'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb054.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb054.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb055" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##local, foo, bar, ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb055.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb055.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb056" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=##targetNamespace, ##local</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb056.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb056.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb057" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=foo, ##local, bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb057.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb057.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb058" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=abce</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesOb059" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb059.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb059.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesOb060" origin="Microsoft"> + <description>Particle Derivation OK (Any:Any- NSSubset) (any) R drived by restriction from (any) B : B's namespace=##local, foo, bar, ##targetNamespace, R's namespace=bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb060.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesOb060.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesS001" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b), R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesS002" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b), R has (b, a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS003" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), b and c are emptiable, R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesS004" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), c is emptiable, R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesS005" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), c is NOT emptiable, R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS006" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), c is NOT emptiable, R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS007" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), R has (a, b, c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesS008" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b, c), R has (a, b, c, d)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS009" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b), R has (a) is NOT from the same namespace as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS010" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b), R has (a) is NOT a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesS011" origin="Microsoft"> + <description>Particle Derivation OK (All:All - Recurse) (All) R drived by restriction from (All) B : B has (a, b), R has (a) which has a type that is a valid restriction from type of B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesS011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR001" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=1, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR002" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=1, B's maxOccurs=1, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR003" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=2, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR004" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=3, R has an element with minOccurs=1, maxOccurs=3</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR005" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=unbounded, R has an element with minOccurs=1, maxOccurs=3</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR006" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=3, R has an element with minOccurs=1, maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR007" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=4, R has 2 elements, each with maxOccurs as 2 and 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR008" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=3, R has 2 elements, each with maxOccurs as 2 and 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR009" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=4, B's maxOccurs=4, R has 2 elements, each with minOccurs as 2 and 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR010" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=4, B's maxOccurs=5, R has 2 elements, each with minOccurs as 3 and 3</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR011" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=4, R has 2 groups, each with maxOccurs as 4 and 0</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR012" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=0, B's maxOccurs=3, R's minOccurs=0, B's maxOccurs=2, but have 2 children</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR013" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=3, B's maxOccurs=8, R's minOccurs=3, B's maxOccurs=4, have 2 children</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR014" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's minOccurs=4, B's maxOccurs=8, R's minOccurs=2, B's maxOccurs=2, have 2 children</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR015" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##any, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR016" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##any, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR017" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##any, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR018" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##other, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR019" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##other, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR020" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##other, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR021" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##local, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR022" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##local, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR023" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##local, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR024" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##targetNamespace, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR025" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##targetNamespace, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR026" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=##targetNamespace, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR027" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=foo, bar', R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR028" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=foo, bar', R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesR029" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=foo, bar', R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR030" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=foo, bar', R has an element from bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesR031" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Any - NSRecurseCheckCardinality) (Choice) R drived by restriction from (Choice) B : B's namespace=foo, bar', R has an element from abc</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesR031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT001" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b), R has (a | b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT002" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b), R has (b | a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT003" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), b and c are emptiable, R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT004" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), c is emptiable, R has (a | b) c is emptiable</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT005" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), b is but c is NOT emptiable, R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT006" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), c is NOT emptiable, R has (a | b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT007" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), R has (a | b | c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT008" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), R has (a | b | c | d)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT009" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b | c), R has ( c | a | b )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT010" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b), R has (a) is NOT from the same namespace as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT011" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B has (a | b), R has (a) is NOT a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesT012" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B's maxOccurs=unbounded, R's maxOccurs=1, but has (a | b | c) all with maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT013" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B's maxOccurs=unbounded, R's maxOccurs=unbounded</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesT014" origin="Microsoft"> + <description>Particle Derivation OK (Choice:Choice - RecurseLax) (Choice) R drived by restriction from (All) B : B's maxOccurs=unbounded, R's maxOccurs = 3 (a | b | c) all with maxOccurs ( 0 and 10 and 100 )</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesT014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ001" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=1, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ002" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=1, B's maxOccurs=1, R's minOccurs=1, R's maxOccurs=1</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ003" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=6, R's minOccurs=1, R's maxOccurs=6</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ004" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=6, R has an element with minOccurs=1, maxOccurs=6</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ005" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=unbounded, R's maxOccurs = 1000, R has element with maxOccurs unbounded</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ006" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=3, R has an element with minOccurs=1, maxOccurs=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ007" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=4, R has 2 elements, each with maxOccurs as 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ008" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=3, R has 2 elements, each with maxOccurs as 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ011" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=4, R has 2 groups, each has one child with maxOccurs as 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ012" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=0, B's maxOccurs=3, R has 2 groups, each has one child with maxOccurs as 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ013" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's minOccurs=4, B's maxOccurs=4, R has 2 groups, each has one child with minOccurs as 2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ016" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##any, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ017" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##any, R has an element from namespace foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ017.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ018" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##other, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ019" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##other, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ020" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##other, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ020.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ021" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##local, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ022" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##local, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ022.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ023" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##local, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ024" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##targetNamespace, R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ024.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ025" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##targetNamespace, R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ026" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=##targetNamespace, R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ027" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=foo, bar', R has an element targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ028" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=foo, bar', R has an element from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesQ029" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=foo, bar', R has an element from foo</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ030" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=foo, bar', R has an element from foo and bar</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ030.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesQ031" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Any - NSRecurseCheckCardinality) (Sequence) R drived by restriction from (any) B : B's namespace=foo, bar', R has an element from abc</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesQ031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesU001" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b), as has maxOccurs='1' , R has (a , b), a has maxOccurs=2</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesU002" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b), a has minOccurs='1', R has (a , b), a has minOccurs='1999'</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesU003" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b), R has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesU004" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b, c), c is emptiable, R has (b,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesU005" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b, c), c is emptiable, R has ( a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesU006" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b, c), c is NOT emptiable, R has ( a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesU007" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b, c, d), R has (d,b,c,a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesU008" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b, c), R has (a , b ,c, d)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesU009" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:All - RecurseUnordered) (Sequence) R drived by restriction from (All) B : B has (a, b), R has (a) is NOT a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesU009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV002" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B's minOccuranceRange=6, R's minOccuranceRange=5</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV003" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B's min,maxOccuranceRange=(3, 9), R's min,maxOccuranceRange=(4, 8)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV005" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B's maxOccuranceRange=6, R's maxOccuranceRange=8</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV006" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B's min,maxOccuranceRange=(0,0), R's min,maxOccuranceRange=(0,0)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV007" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b), R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV008" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b), R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV009" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV010" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV011" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has ( c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV012" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV013" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (b, c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV014" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (a, c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV014.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV015" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (c, b, a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesV016" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (a, b, c, d)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV017" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b | c), R has (a) from a different namespace than B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV018" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (a | b), R has (a) which is NOT a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesV020" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Choice - MapAndSum) (Sequence) R drived by restriction from (Choice) B : B has (ref=A | b), R has (i) where i is a substitution group to A</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesV020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW001" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B's minOccuranceRange=6, R's minOccuranceRange=6</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesW002" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B's minOccuranceRange=6, R's minOccuranceRange=4</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW003" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B's min,maxOccuranceRange=(3, 9), R's min,maxOccuranceRange=(4, 8)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesW005" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B's maxOccuranceRange=6, R's maxOccuranceRange=8</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW006" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B's min,maxOccuranceRange=(0,0), R's min,maxOccuranceRange=(0,0)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="particlesW007" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b), R has (b, a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW008" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b, c), b and c are emptiable, R has (a)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesW010" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b, c), c is NOT emptiable, R has (a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW011" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b, c), R has (a, b, c)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="particlesW012" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b, c), R has (a, b, c, d)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW013" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b, c), R has (c, a, b)</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW014" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b), R has (a) is NOT from the same namespace as B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW015" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b), R has (a) is NOT a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="particlesW016" origin="Microsoft"> + <description>Particle Derivation OK (Sequence:Sequence - Recurse) (Sequence) R drived by restriction from (Sequence) B : B has (a, b), R has (a) is a valid restriction of the 'a' in B</description> + <files> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="Particles" fileName="particlesW016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stA001" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA002" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA003" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA004" origin="Microsoft"> + <description>Declaration with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA005" origin="Microsoft"> + <description>Declaration with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA006" origin="Microsoft"> + <description>Declaration with optional attribute id = 'foo123' , name attribute='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA007" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA008" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is simpleType restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA009" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA010" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA011" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is attribute</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA012" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is element</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA013" origin="Microsoft"> + <description>Declaration with optional attribute name = 'fooType' , simpleType not global, parent is simpleContent restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA014" origin="Microsoft"> + <description>Declaration with optional attribute name = 'a:b'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA015" origin="Microsoft"> + <description>Declaration with optional attribute name = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA016" origin="Microsoft"> + <description>Declaration with optional attribute name = 'xmlns'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA017" origin="Microsoft"> + <description>Declaration with optional attribute name = '1foo'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stA018" origin="Microsoft"> + <description>Declaration with optional attribute name = '_foo'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA019" origin="Microsoft"> + <description>Declaration with optional attribute name = '_1'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stA020" origin="Microsoft"> + <description>attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stA020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB001" origin="Microsoft"> + <description>content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB002" origin="Microsoft"> + <description>content with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB003" origin="Microsoft"> + <description>content with restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB004" origin="Microsoft"> + <description>content with two restrctions</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB005" origin="Microsoft"> + <description>content with restriction then annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB006" origin="Microsoft"> + <description>content with annotation then restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB007" origin="Microsoft"> + <description>content with restriction then attribute</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB008" origin="Microsoft"> + <description>content with list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB009" origin="Microsoft"> + <description>content with two lists</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB010" origin="Microsoft"> + <description>content with list then annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB011" origin="Microsoft"> + <description>content with annotation then list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB012" origin="Microsoft"> + <description>content with union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB013" origin="Microsoft"> + <description>content with two unions</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB014" origin="Microsoft"> + <description>content with union then annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB015" origin="Microsoft"> + <description>content with annotation then union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stB016" origin="Microsoft"> + <description>content with two annotations then restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB017" origin="Microsoft"> + <description>content with two annotations then list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB018" origin="Microsoft"> + <description>content with two annotations then union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB019" origin="Microsoft"> + <description>content with list then restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB020" origin="Microsoft"> + <description>content with list then union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB021" origin="Microsoft"> + <description>content with restriction then list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB022" origin="Microsoft"> + <description>content with restriction then union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB023" origin="Microsoft"> + <description>content with union then list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stB024" origin="Microsoft"> + <description>content with union then restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stB024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC001" origin="Microsoft"> + <description>Restriction with optional attribute base = 'xsd:string'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC002" origin="Microsoft"> + <description>Restriction with optional attribute base = 'xsd:something'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC003" origin="Microsoft"> + <description>Restriction with optional attribute base = 'xsd:anyType'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC004" origin="Microsoft"> + <description>Restriction with optional attribute base = 'foo:string' foo is not defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC005" origin="Microsoft"> + <description>Restriction with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC006" origin="Microsoft"> + <description>Restriction with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC007" origin="Microsoft"> + <description>Restriction with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC008" origin="Microsoft"> + <description>Restriction with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC009" origin="Microsoft"> + <description>Restriction with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC010" origin="Microsoft"> + <description>Restriction. content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC011" origin="Microsoft"> + <description>Restriction. content of two simpleTypes</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC012" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of duration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC013" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of encoding</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC014" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of enumeration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC015" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of length</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC016" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of maxExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC017" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of maxInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC018" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of maxLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC019" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of minExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC020" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of minInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC021" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of minLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC022" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of pattern</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC022.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC023" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of period</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC024" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of totalDigits</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC024.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC025" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of fractionDigits</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC025.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC026" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of whiteSpace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC026.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC027" origin="Microsoft"> + <description>Restriction. base is valid for restriction facet and content of attribute</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC028" origin="Microsoft"> + <description>Restriction. content of attributeGroup</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC029" origin="Microsoft"> + <description>Restriction. content of anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC030" origin="Microsoft"> + <description>Restriction. base = 'xsd:string and content of annotation and length=5</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC030.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stC031" origin="Microsoft"> + <description>Restriction. base = 'xsd:string' and content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC032" origin="Microsoft"> + <description>Restriction. content of simpleType and length=5</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC032.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stC033" origin="Microsoft"> + <description>Restriction. attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stC033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD001" origin="Microsoft"> + <description>List with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD002" origin="Microsoft"> + <description>List with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD003" origin="Microsoft"> + <description>List with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD004" origin="Microsoft"> + <description>List with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD005" origin="Microsoft"> + <description>List with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD006" origin="Microsoft"> + <description>List with optional attribute itemType = 'myInteger' itemType is unique</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD007" origin="Microsoft"> + <description>List with optional attribute itemType = 'xsd:Integer' xsd is properly defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD008" origin="Microsoft"> + <description>List with optional attribute itemType = 'foo:myInteger' foo is properly defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD009" origin="Microsoft"> + <description>List with optional attribute itemType = 'foo:myInteger' foo is not defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD010" origin="Microsoft"> + <description>List with optional attribute itemType = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD011" origin="Microsoft"> + <description>List attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD012" origin="Microsoft"> + <description>List content is empty</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD013" origin="Microsoft"> + <description>List content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD014" origin="Microsoft"> + <description>List content of single annotation then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD015" origin="Microsoft"> + <description>List content of two simpleTypes</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD016" origin="Microsoft"> + <description>List content of two annotations then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD017" origin="Microsoft"> + <description>List content of simpleType then annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD018" origin="Microsoft"> + <description>List with optional attribute itemType = 'xsd:Integer' content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD019" origin="Microsoft"> + <description>List with optional attribute itemType = 'myTest' myTest is a complexType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stD020" origin="Microsoft"> + <description>List with optional attribute itemType = 'myTest' myTest is a Union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stD021" origin="Microsoft"> + <description>List with optional attribute itemType = 'myTest' myTest a simpleType restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stD021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE001" origin="Microsoft"> + <description>Union with optional attribute id = 'foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE002" origin="Microsoft"> + <description>Union with optional attribute id = 'foo123' , another object with an ID ='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE003" origin="Microsoft"> + <description>Union with optional attribute id = 'foo123' , an included object with and ID='foo123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE004" origin="Microsoft"> + <description>Union with optional attribute id = ''</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE005" origin="Microsoft"> + <description>Union with optional attribute id = '123'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE006" origin="Microsoft"> + <description>Union with optional attribute memberTypes = 'States listMyInt' memberTypes is unique</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE007" origin="Microsoft"> + <description>Union with optional attribute memberTypes = 'xsd:Integer foo:listMyInt' namespaces are defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE008" origin="Microsoft"> + <description>Union with optional attribute memberTypes = 'xsd:Integer foo:listMyInt' foo namespace is not defined</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE009" origin="Microsoft"> + <description>Union attribute with non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE010" origin="Microsoft"> + <description>Union content is empty</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE011" origin="Microsoft"> + <description>Union memberTypes attribute and content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE012" origin="Microsoft"> + <description>Union no attributes and content of single annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE013" origin="Microsoft"> + <description>Union content of single annotation then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE014" origin="Microsoft"> + <description>Union content of two simpleTypes</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE015" origin="Microsoft"> + <description>Union content of two annotations then simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE016" origin="Microsoft"> + <description>Union content of simpleType then annotation</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stE017" origin="Microsoft"> + <description>Union memberTypes attribute and content of simpleType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stE018" origin="Microsoft"> + <description>Union derived from complexType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stE018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF001" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of length</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF002" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of maxLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF003" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of minLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF004" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of enumeration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF005" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of whitespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF006" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of pattern</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF007" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of duration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF008" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of encoding</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF009" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of maxExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF010" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of maxInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF011" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of minExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF012" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of minInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF013" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of period</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF014" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of precision</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF015" origin="Microsoft"> + <description>Derived datatype from List with constraining facet of scale</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF016" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of pattern</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF017" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of enumeration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF018" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of length</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF019" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of maxLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF020" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of minLength</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF021" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of whitespace</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF022" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of duration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF023" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of encoding</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF024" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of maxExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF025" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of maxInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF025.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF026" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of minExclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF027" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of minInclusive</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF028" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of period</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF029" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of precision</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF030" origin="Microsoft"> + <description>Derived datatype from Union with constraining facet of scale</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF030.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF031" origin="Microsoft"> + <description>Check that simpleType final works for list, union and restriction</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF031.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF032" origin="Microsoft"> + <description>Check that simpleType final works for #all</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF032.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF033" origin="Microsoft"> + <description>Check that simpleType final works for #all</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF033.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF034" origin="Microsoft"> + <description>Check that use of finalDefault = list stops simpleType derivations</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF035" origin="Microsoft"> + <description>Check that use of finalDefault = list stops simpleType derivations</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stF036" origin="Microsoft"> + <description>Check that use of finalDefault = union stops simpleType derivations</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stF037" origin="Microsoft"> + <description>Check that use of finalDefault = union stops simpleType derivations</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stF037.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stG001" origin="Microsoft"> + <description>list of atomic type instance document contains items of the same atomic type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG002" origin="Microsoft"> + <description>list of atomic type with facet of 'maxLength' value = '3' instance document has 3 items</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG003" origin="Microsoft"> + <description>list of atomic type with facet of 'maxLength' value = '3' instance document has 4 items</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stG004" origin="Microsoft"> + <description>schema is a list derived from a union of integer and NMTOKEN instance document contains valid items of integer and NMTOKEN</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG005" origin="Microsoft"> + <description>schema is a list derived from a union of integer and NMTOKEN instance document contains float</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stG006" origin="Microsoft"> + <description>list of atomic type with facet of 'length' value = '2' instance document has 2 items</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG007" origin="Microsoft"> + <description>list of atomic type with facet of 'length' value = '2' instance document has 1 item</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG007.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stG008" origin="Microsoft"> + <description>list of atomic type with facet of 'minLength' value = '2' instance document has 3 items</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG008.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG009" origin="Microsoft"> + <description>list of atomic type with facet of 'minLength' value = '2' instance document has 1 item</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stG010" origin="Microsoft"> + <description>list of NMTOKEN type with facet of 'enumeration' value = 'CA' instance document has 'CA' value</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG011" origin="Microsoft"> + <description>list of NMTOKEN type with facet of 'enumeration' value = 'CA' instance document has 'WA' value</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stG012" origin="Microsoft"> + <description>list of string type with facet of 'pattern' value = '[A-C]{0,2}' instance document has 'CA' value</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stG013" origin="Microsoft"> + <description>list of string type with facet of 'pattern' value = '[A-C]{0,2}' instance document has 'WA' value</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stG013.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stH001" origin="Microsoft"> + <description>schema defines a union of positiveInteger with minInclusive and maxInclusive restrictions and NMTOKEN with enumeration instance document has valid values</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stH002" origin="Microsoft"> + <description>schema defines a union of positiveInteger with minInclusive and maxInclusive restrictions and NMTOKEN with enumeration instance document an invalid value</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stH003" origin="Microsoft"> + <description>schema defines a union with memberTypes of a list of states(restricted strings) and a list of zip codes(restricted positiveIntegers) instance document has valid values</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stH004" origin="Microsoft"> + <description>schema defines a union with memberTypes of a list of states(restricted strings) and a list of zip codes(restricted positiveIntegers) instance document has zip code out of range</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH004.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stH005" origin="Microsoft"> + <description>union derived from list of zip codes with restriction facet 'pattern' with a value of '[0-8]{5}' instance document has zip code='12345'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stH006" origin="Microsoft"> + <description>union derived from list of zip codes with restriction facet 'pattern' with a value of '[0-8]{5}' instance document has zip code = '98765'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stH007" origin="Microsoft"> + <description>union derived from list of states with restriction facet 'enumeration' with a value of 'CA' instance document has state = 'CA'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="stH008" origin="Microsoft"> + <description>union derived from list of states with restriction facet 'enumeration' with a value of 'CA' instance document has state = 'WA'</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stH008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="stI001" origin="Microsoft"> + <description>atomic. base type definition is atomic</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stI001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stI002" origin="Microsoft"> + <description>atomic. base type definition is union</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stI002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stI003" origin="Microsoft"> + <description>atomic. base type definition is list</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stI003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stI004" origin="Microsoft"> + <description>atomic. base type definition is complexType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stI004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stI005" origin="Microsoft"> + <description>atomic. derived facet value is outside base facet acceptable restriction.</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stI005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ001" origin="Microsoft"> + <description>list. item type definition refers to atomic type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ002" origin="Microsoft"> + <description>list. item type definition refers to union type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ003" origin="Microsoft"> + <description>list. item type definition refers to complexType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ004" origin="Microsoft"> + <description>list. length facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ005" origin="Microsoft"> + <description>list. minLength facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ006" origin="Microsoft"> + <description>list. maxLength facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ006.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ007" origin="Microsoft"> + <description>list. pattern facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ007.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ008" origin="Microsoft"> + <description>list. enumeration facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stJ009" origin="Microsoft"> + <description>list. whiteSpace facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ010" origin="Microsoft"> + <description>list. maxInclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ011" origin="Microsoft"> + <description>list. maxExclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ012" origin="Microsoft"> + <description>list. minExclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ013" origin="Microsoft"> + <description>list. minInclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ014" origin="Microsoft"> + <description>list. precision facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ015" origin="Microsoft"> + <description>list. scale facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ016" origin="Microsoft"> + <description>list. encoding facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ017" origin="Microsoft"> + <description>list. duration facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ018" origin="Microsoft"> + <description>list. period facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stJ019" origin="Microsoft"> + <description>list. item type definition refers to listType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stJ019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK001" origin="Microsoft"> + <description>union. memberTypes definition refers to atomic type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stK002" origin="Microsoft"> + <description>union. memberTypes definition refers to union type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK003" origin="Microsoft"> + <description>union. memberTypes definition refers to complexType</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK004" origin="Microsoft"> + <description>union. memberTypes definition refers to list type</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stK005" origin="Microsoft"> + <description>union. length facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK006" origin="Microsoft"> + <description>union. minLength facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK007" origin="Microsoft"> + <description>union. maxLength facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK008" origin="Microsoft"> + <description>union. pattern facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stK009" origin="Microsoft"> + <description>union. enumeration facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stK010" origin="Microsoft"> + <description>union. whiteSpace facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK011" origin="Microsoft"> + <description>union. maxInclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK011.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK012" origin="Microsoft"> + <description>union. maxExclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK013" origin="Microsoft"> + <description>union. minExclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK014" origin="Microsoft"> + <description>union. minInclusive facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK015" origin="Microsoft"> + <description>union. precision facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK016" origin="Microsoft"> + <description>union. scale facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK017" origin="Microsoft"> + <description>union. encoding facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK017.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK018" origin="Microsoft"> + <description>union. duration facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stK019" origin="Microsoft"> + <description>union. period facet</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stK019.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stZ001" origin="Microsoft"> + <description>70971 - simpleType does not support final attribute</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stZ001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="stZ002" origin="Microsoft"> + <description>67942 - Schema Component Constraint: enumeration valid restriction is not implemented</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stZ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stZ003" origin="Microsoft"> + <description>71430 - simpleType final attribute incorrectly supports extension enumeration</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stZ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="stZ004" origin="Microsoft"> + <description>63063 - xsd:can not specify HalfWidth-KANA to Instance documents when schema has pattern facet including Japanese character.</description> + <files> + <file tsDir="msxsdtest" folder="simpleType" fileName="stZ004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="simpleType" fileName="stZ004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildA001" origin="Microsoft"> + <description>ANY with ID='foo25'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildA002" origin="Microsoft"> + <description>ANY with ID='_foo-2.5'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildA003" origin="Microsoft"> + <description>ANY with ID='25'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildA004" origin="Microsoft"> + <description>ANY with ID='0'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildA005" origin="Microsoft"> + <description>ANY with ID='1'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildA006" origin="Microsoft"> + <description>ANY with ID='foo:bar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildA007" origin="Microsoft"> + <description>ANY with ID=':bar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildA008" origin="Microsoft"> + <description>Duplicate ID='foo25' where foo25 is already exists</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildA008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB009" origin="Microsoft"> + <description>ANY with maxOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB010" origin="Microsoft"> + <description>ANY with maxOccurs='10'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB011" origin="Microsoft"> + <description>ANY with maxOccurs='32767'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB012" origin="Microsoft"> + <description>ANY with maxOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB013" origin="Microsoft"> + <description>ANY with maxOccurs='010'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB014" origin="Microsoft"> + <description>ANY with maxOccurs=''</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB015" origin="Microsoft"> + <description>ANY with maxOccurs='-1'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB016" origin="Microsoft"> + <description>ANY with maxOccurs='Unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB017" origin="Microsoft"> + <description>ANY with minOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB018" origin="Microsoft"> + <description>ANY with minOccurs='10'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB019" origin="Microsoft"> + <description>ANY with minOccurs='32767'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB020" origin="Microsoft"> + <description>ANY with minOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB021" origin="Microsoft"> + <description>ANY with minOccurs='010'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB021.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB022" origin="Microsoft"> + <description>ANY with minOccurs=''</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB023" origin="Microsoft"> + <description>ANY with minOccurs='-1'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB024" origin="Microsoft"> + <description>ANY with minOccurs='Unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB025" origin="Microsoft"> + <description>ANY with minOccurs='0' maxOccurs='0'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB025.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB026" origin="Microsoft"> + <description>ANY with minOccurs='1' maxOccurs='2'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB026.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildB027" origin="Microsoft"> + <description>ANY with minOccurs='2' maxOccurs='1'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB028" origin="Microsoft"> + <description>ANY with minOccurs='unbounded' maxOccurs='unbounded'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildB029" origin="Microsoft"> + <description>ANY with minOccurs='0' maxOccurs='9'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildB029.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC030" origin="Microsoft"> + <description>ANY with namespace =</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC030.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC031" origin="Microsoft"> + <description>ANY with namespace = ##any</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC031.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC032" origin="Microsoft"> + <description>ANY with namespace = ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC032.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC033" origin="Microsoft"> + <description>ANY with namespace = ##other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC034" origin="Microsoft"> + <description>ANY with namespace = ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC035" origin="Microsoft"> + <description>ANY with namespace = ##target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC035.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC036" origin="Microsoft"> + <description>ANY with namespace = ##all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC036.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC037" origin="Microsoft"> + <description>ANY with namespace = #any</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC037.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC038" origin="Microsoft"> + <description>ANY with namespace = #local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC038.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC039" origin="Microsoft"> + <description>ANY with namespace = #other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC039.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC040" origin="Microsoft"> + <description>ANY with namespace = #targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC041" origin="Microsoft"> + <description>ANY with namespace = #target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC042" origin="Microsoft"> + <description>ANY with namespace = #all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC042.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC043" origin="Microsoft"> + <description>ANY with namespace = any</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC043.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC044" origin="Microsoft"> + <description>ANY with namespace = local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC044.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC045" origin="Microsoft"> + <description>ANY with namespace = other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC045.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC046" origin="Microsoft"> + <description>ANY with namespace = targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC046.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC047" origin="Microsoft"> + <description>ANY with namespace = target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC047.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC048" origin="Microsoft"> + <description>ANY with namespace = all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC048.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC049" origin="Microsoft"> + <description>ANY with namespace = ##any ##other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC049.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC050" origin="Microsoft"> + <description>ANY with namespace = ##any ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC050.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC051" origin="Microsoft"> + <description>ANY with namespace = ##any ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC051.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC052" origin="Microsoft"> + <description>ANY with namespace = ##other ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC052.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC053" origin="Microsoft"> + <description>ANY with namespace = ##other ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC053.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC054" origin="Microsoft"> + <description>ANY with namespace = ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC054.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC055" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC055.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC056" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC056.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC057" origin="Microsoft"> + <description>ANY with namespace = ##any ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC057.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC058" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC058.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC059" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/1999/xhtml</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC059.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC060" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC060.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC061" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC061.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC062" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/Graphics/SVG/</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC062.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC063" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC063.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC064" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/1999/XMLSchema</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC064.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC065" origin="Microsoft"> + <description>ANY with namespace = http://www.w3.org/1999/XMLSchema http://www.w3.org/1999/XMLSchema-instance http://www.w3.org/1999/XMLSchema-datatypes</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC065.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC066" origin="Microsoft"> + <description>ANY with namespace = ##any http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC066.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC067" origin="Microsoft"> + <description>ANY with namespace = ##other http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC067.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildC068" origin="Microsoft"> + <description>ANY with namespace = ##local http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC068.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC069" origin="Microsoft"> + <description>ANY with namespace = ##targetNamespace http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC069.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildC070" origin="Microsoft"> + <description>ANY with namespace = ##local ##targetNamespace http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildC070.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildD071" origin="Microsoft"> + <description>ANY with processContents =</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD071.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildD072" origin="Microsoft"> + <description>ANY with processContents = lax</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD072.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildD073" origin="Microsoft"> + <description>ANY with processContents = skip</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD073.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildD074" origin="Microsoft"> + <description>ANY with processContents = strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD074.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildD075" origin="Microsoft"> + <description>ANY with processContents = lax skip</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD075.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildD076" origin="Microsoft"> + <description>ANY with processContents = lax strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD076.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildD077" origin="Microsoft"> + <description>ANY with processContents = skip strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD077.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildD078" origin="Microsoft"> + <description>ANY with processContents = lax skip strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD078.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildD079" origin="Microsoft"> + <description>ANY with processContents = all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildD079.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildE001" origin="Microsoft"> + <description>ANY with an annotation</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildE001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildE002" origin="Microsoft"> + <description>ANY with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildE002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF001" origin="Microsoft"> + <description>ANY with namespace = ##any and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF002" origin="Microsoft"> + <description>ANY with namespace = ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF003" origin="Microsoft"> + <description>ANY with namespace = ##other and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF004" origin="Microsoft"> + <description>ANY with namespace = ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF005" origin="Microsoft"> + <description>ANY with namespace = http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF006" origin="Microsoft"> + <description>ANY with namespace = ##any ##other and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF007" origin="Microsoft"> + <description>ANY with namespace = ##any ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF008" origin="Microsoft"> + <description>ANY with namespace = ##any ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF009" origin="Microsoft"> + <description>ANY with namespace = ##other ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF010" origin="Microsoft"> + <description>ANY with namespace = ##other ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF011" origin="Microsoft"> + <description>ANY with namespace = ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF012" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF013" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF014" origin="Microsoft"> + <description>ANY with namespace = ##any ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF015" origin="Microsoft"> + <description>ANY with namespace = ##any ##other ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF016" origin="Microsoft"> + <description>ANY with namespace = ##any http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF017" origin="Microsoft"> + <description>ANY with namespace = ##local http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF018" origin="Microsoft"> + <description>ANY with namespace = ##other http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildF019" origin="Microsoft"> + <description>ANY with namespace = ##targetNamespace http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildF020" origin="Microsoft"> + <description>ANY with namespace = ##local ##targetNamespace http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildF020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildG001" origin="Microsoft"> + <description>ANY (w/ namespace=##any) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG002" origin="Microsoft"> + <description>ANY (w/ namespace=##any) and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG003" origin="Microsoft"> + <description>ANY (w/ namespace=##other) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG004" origin="Microsoft"> + <description>ANY (w/ namespace=##other) and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG005" origin="Microsoft"> + <description>ANY (w/ namespace=##local) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG005.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG006" origin="Microsoft"> + <description>ANY (w/ namespace=##local) and instance document has elements from no namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG007" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG008" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG009" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG010" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has elements from both namespaces</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG011" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG012" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG013" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has elements from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG014" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG015" origin="Microsoft"> + <description>ANY (w/ namespace=##any) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG016" origin="Microsoft"> + <description>ANY (w/ namespace=##any) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG017" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG018" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG019" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG019.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG020" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG021" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG022" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG023" origin="Microsoft"> + <description>ANY (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG024" origin="Microsoft"> + <description>ANY (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG025" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG026" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG027" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG028" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG029" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG029.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG030" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG030.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG031" origin="Microsoft"> + <description>ANY (w/ namespace=A B C D E ##local ##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from all of them</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG032" origin="Microsoft"> + <description>ANY (w/ namespace=A B C D E ##local ##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from all of them + bar</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG033" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://foobar) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG034" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://foobar) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG034.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG035" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) with schema targetNamespace=http://www.w3.org/1999/xhtml and instance document has elements from local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG035.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG036" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG036.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG036.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG037" origin="Microsoft"> + <description>ANY (w/ namespace=##local http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has elements from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG038" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildG039" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has elements from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildG040" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has elements from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildG040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildH001" origin="Microsoft"> + <description>ANY (w/ processContents=strict and namespace=##targetNamespace) with schema targetNamespace=http://www.w3.org/1999/xhtml and instance document has undeclared elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH001.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildH002" origin="Microsoft"> + <description>ANY (w/ processContents=strict and namespace=##targetNamespace) with schema targetNamespace=http://www.w3.org/1999/xhtml and instance document has elements from other namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildH003" origin="Microsoft"> + <description>ANY (w/ processContents=lax and namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildH004" origin="Microsoft"> + <description>ANY (w/ processContents=lax and namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has undeclared elements from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildH006" origin="Microsoft"> + <description>ANY (w/ processContents=skip and namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has elements from other namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildH007" origin="Microsoft"> + <description>ANY (w/ namespace=http://www.w3.org/1999/xhtml and declared element, processContents=strict)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildH008" origin="Microsoft"> + <description>ANY (w/ namespace=http://www.w3.org/1999/xhtml and undeclared element, processContents=strict)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildH009" origin="Microsoft"> + <description>ANY (w/ namespace=http://www.w3.org/1999/xhtml and declared element, processContents=lax)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH009.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildH010" origin="Microsoft"> + <description>ANY (w/ namespace=http://www.w3.org/1999/xhtml and undeclared element, processContents=lax)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildH010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI001" origin="Microsoft"> + <description>ANY with an attribute that has a non-schema namespace, a:b='c' where xmlns:a='foo' in xsd:schema</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildI002" origin="Microsoft"> + <description>ANY with an attribute a:b='c' where a doesn't have a non-schema namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildI003" origin="Microsoft"> + <description>ANY with an attribute foo='bar' where foo is a random attribute</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildI004" origin="Microsoft"> + <description>Regression of 67191 - ensuring that processContents of lax will validate</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI005" origin="Microsoft"> + <description>multiple any in sequence with different namespaces and valid instance xml</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI006" origin="Microsoft"> + <description>multiple any in choice with different namespaces (a, b, ##targetNamespace, ##local), and valid instance xml</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI007" origin="Microsoft"> + <description>multiple any in choice with namespaces (##other, ##targetNamespace), and valid instance xml</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI008" origin="Microsoft"> + <description>multiple any in choice with namespaces (##other, ##local), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildI009" origin="Microsoft"> + <description>multiple any in choice with namespaces (##other, A), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildI010" origin="Microsoft"> + <description>multiple any in choice with namespaces (A, A), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildI011" origin="Microsoft"> + <description>multiple any in sequence with namespaces (##other{1}, A{1}), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI011.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI012" origin="Microsoft"> + <description>multiple any in sequence with namespaces (##other{1}, A{2}), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildI013" origin="Microsoft"> + <description>multiple any in sequence with namespaces (##other{2}, A{1}), non-deterministic declaration</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildI013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ001" origin="Microsoft"> + <description>anyAttribute with ID='foo25'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildJ002" origin="Microsoft"> + <description>anyAttribute with ID='_foo-2.5'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildJ003" origin="Microsoft"> + <description>anyAttribute with ID='25'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ004" origin="Microsoft"> + <description>anyAttribute with ID='0'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ005" origin="Microsoft"> + <description>anyAttribute with ID='1'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ006" origin="Microsoft"> + <description>anyAttribute with ID='foo:bar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ007" origin="Microsoft"> + <description>anyAttribute with ID=':bar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildJ008" origin="Microsoft"> + <description>Duplicate ID='foo25' where foo25 is already exists</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildJ008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK001" origin="Microsoft"> + <description>anyAttribute with namespace =</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK002" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK003" origin="Microsoft"> + <description>anyAttribute with namespace = ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK004" origin="Microsoft"> + <description>anyAttribute with namespace = ##other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK005" origin="Microsoft"> + <description>anyAttribute with namespace = ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK006" origin="Microsoft"> + <description>anyAttribute with namespace = ##target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK007" origin="Microsoft"> + <description>anyAttribute with namespace = ##all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK008" origin="Microsoft"> + <description>anyAttribute with namespace = #anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK008.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK009" origin="Microsoft"> + <description>anyAttribute with namespace = #local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK009.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK010" origin="Microsoft"> + <description>anyAttribute with namespace = #other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK010.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK011" origin="Microsoft"> + <description>anyAttribute with namespace = #targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK012" origin="Microsoft"> + <description>anyAttribute with namespace = #target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK012.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK013" origin="Microsoft"> + <description>anyAttribute with namespace = #all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK013.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK014" origin="Microsoft"> + <description>anyAttribute with namespace = anyAttribute</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK014.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK015" origin="Microsoft"> + <description>anyAttribute with namespace = local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK015.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK016" origin="Microsoft"> + <description>anyAttribute with namespace = other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK016.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK017" origin="Microsoft"> + <description>anyAttribute with namespace = targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK018" origin="Microsoft"> + <description>anyAttribute with namespace = target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK018.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK019" origin="Microsoft"> + <description>anyAttribute with namespace = all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK020" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK020.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK021" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK021.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK022" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK022.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK023" origin="Microsoft"> + <description>anyAttribute with namespace = ##other ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK023.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK024" origin="Microsoft"> + <description>anyAttribute with namespace = ##other ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK024.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK025" origin="Microsoft"> + <description>anyAttribute with namespace = ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK025.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK026" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK026.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK027" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK027.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK028" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK028.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK029" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##local ##targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK029.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK030" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/xhtml</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK030.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK031" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK031.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK032" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK032.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK033" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/Graphics/SVG/</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK033.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK034" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK034.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK035" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/XMLSchema</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK035.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK036" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/XMLSchema http://www.w3.org/1999/XMLSchema-instance http://www.w3.org/1999/XMLSchema-datatypes</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK036.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK037" origin="Microsoft"> + <description>anyAttribute with namespace = http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK037.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK038" origin="Microsoft"> + <description>anyAttribute with namespace = ##other http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK038.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildK039" origin="Microsoft"> + <description>anyAttribute with namespace = ##local http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK039.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK040" origin="Microsoft"> + <description>anyAttribute with namespace = ##targetNamespace http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK040.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildK041" origin="Microsoft"> + <description>anyAttribute with namespace = ##local ##targetNamespace http://www.w3.org/1999/xhtml http://www.w3.org/1999/XSL/Transform http://www.w3.org/1999/XML/xinclude http://www.w3.org/1999/02/22-rdf-syntax-ns http://www.w3.org/2000/01/rdf-schema http://www.w3.org/Graphics/SVG/ http://www.w3.org/2000/02/xmldsig http://www.w3.org/TR/2000/WD-xml-c14n-20000119</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildK041.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildL001" origin="Microsoft"> + <description>anyAttribute with processContents =</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildL002" origin="Microsoft"> + <description>anyAttribute with processContents = lax</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildL003" origin="Microsoft"> + <description>anyAttribute with processContents = skip</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildL004" origin="Microsoft"> + <description>anyAttribute with processContents = strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildL005" origin="Microsoft"> + <description>anyAttribute with processContents = lax skip</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL005.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildL006" origin="Microsoft"> + <description>anyAttribute with processContents = lax strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildL007" origin="Microsoft"> + <description>anyAttribute with processContents = skip strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildL008" origin="Microsoft"> + <description>anyAttribute with processContents = lax skip strict</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildL009" origin="Microsoft"> + <description>anyAttribute with processContents = all</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildL009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildM001" origin="Microsoft"> + <description>anyAttribute with an annotation</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildM001.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildM002" origin="Microsoft"> + <description>anyAttribute with two annotations</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildM002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN001" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN002" origin="Microsoft"> + <description>anyAttribute with namespace = ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN002.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN003" origin="Microsoft"> + <description>anyAttribute with namespace = ##other and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN003.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN004" origin="Microsoft"> + <description>anyAttribute with namespace = ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN004.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN005" origin="Microsoft"> + <description>anyAttribute with namespace = http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN005.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN006" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN006.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN007" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN007.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN008" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN008.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN009" origin="Microsoft"> + <description>anyAttribute with namespace = ##other ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN009.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN010" origin="Microsoft"> + <description>anyAttribute with namespace = ##other ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN010.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN011" origin="Microsoft"> + <description>anyAttribute with namespace = ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN011.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN012" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##local and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN012.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN013" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN013.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN014" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN014.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN015" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute ##other ##local ##targetNamespace and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN015.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN016" origin="Microsoft"> + <description>anyAttribute with namespace = ##anyAttribute http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN016.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN017" origin="Microsoft"> + <description>anyAttribute with namespace = ##local http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN017.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN018" origin="Microsoft"> + <description>anyAttribute with namespace = ##other http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN018.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildN019" origin="Microsoft"> + <description>anyAttribute with namespace = ##targetNamespace http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN019.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildN020" origin="Microsoft"> + <description>anyAttribute with namespace = ##local ##targetNamespace http://foobar and schema targetNamespace='http://foobar'</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildN020.xsd" role="schema" validity="1"/> + </files> + </test> + <test id="wildQ001" origin="Microsoft"> + <description>ANYAttribute declared twice</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildQ001.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildQ002" origin="Microsoft"> + <description>ANYAttribute (minoccurs=2)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildQ002.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildQ003" origin="Microsoft"> + <description>ANYAttribute (maxoccurs=2)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildQ003.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildQ004" origin="Microsoft"> + <description>ANYAttribute (minoccurs=2, maxoccurs=unbounded)</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildQ004.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="wildO001" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##any) and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO002" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##any) and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO002.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO003" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##other) and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO003.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO004" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##other) and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO005" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local) and instance document has attributes from local Namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO006" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local) and instance document has attributes from other namespaces besides local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO006.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO007" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace) and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO007.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO007.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO008" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace) and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO008.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO008.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO009" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO009.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO009.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO010" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has attributes from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO010.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO010.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO011" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://www.w3.org/1999/xhtml) and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO011.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO011.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO012" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO012.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO012.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO013" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has attributes from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO013.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO013.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO014" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO014.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO014.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO015" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##any) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO015.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO015.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO016" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##any) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO016.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO016.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO017" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO017.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO017.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO018" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO018.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO018.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO019" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has attributes from local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO019.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO019.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO020" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO020.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO020.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO021" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO021.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO021.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO022" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO022.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO022.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO023" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO023.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO023.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO024" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO024.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO024.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO025" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO025.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO025.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO026" origin="Microsoft"> + <description>ANY (w/ namespace=##other) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO026.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO026.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO027" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO027.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO027.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO028" origin="Microsoft"> + <description>ANY (w/ namespace=##targetNamespace) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO028.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO028.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO029" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has attributes from local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO029.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO029.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO030" origin="Microsoft"> + <description>ANY (w/ namespace=##local) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO030.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO030.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO031" origin="Microsoft"> + <description>ANY (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO031.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO031.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO032" origin="Microsoft"> + <description>ANY (w/ namespace=http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO032.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO032.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO033" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from local</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO033.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO033.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO034" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://foobar) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides listed</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO034.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO034.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO035" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO035.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO035.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO037" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##local http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has attributes from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO037.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO037.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO038" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO038.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO038.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildO039" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has attributes from other namespaces besides target</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO039.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO039.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildO040" origin="Microsoft"> + <description>ANYAttribute (w/ namespace=##targetNamespace http://www.w3.org/1999/xhtml) with schema targetNamespace=http://foobar and instance document has attributes from the xhtml namespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO040.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildO040.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildP001" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=strict and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP001.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildP002" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=strict and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute not declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP002.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP002.xml" role="instance" validity="0"/> + </files> + </test> + <test id="wildP003" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=lax and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP003.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP003.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildP004" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=lax and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute not declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP004.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP004.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildP005" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=skip and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP005.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP005.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildP006" origin="Microsoft"> + <description>ANYAttribute (w/ processContents=skip and namespace=##targetNamespace) with schema targetNamespace=http://foobar, attribute not declared and instance document has attributes from targetNamespace</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP006.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildP006.xml" role="instance" validity="1"/> + </files> + </test> + <test id="wildZ001" origin="Microsoft"> + <description>Bug 64502 - Error validating namespace set to a valid namespace URI and instance document has correct elements</description> + <files> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildZ001.xsd" role="schema" validity="1"/> + <file tsDir="msxsdtest" folder="wildCards" fileName="wildZ001.xml" role="instance" validity="0"/> + </files> + </test> +</tests> diff --git a/xstc/nist-test-def.xml b/xstc/nist-test-def.xml new file mode 100644 index 0000000..ed7eefe --- /dev/null +++ b/xstc/nist-test-def.xml @@ -0,0 +1,41685 @@ +<?xml version="1.0"?> +<tests><test id="NISTXML-anyURI-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-1, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 11 + +</description> +<files> +<file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-1.xsd" role="schema" validity="1"/> +<file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-1-1.xml" role="instance" validity="1"/></files> +</test><test id="NISTXML-anyURI-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-1, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-1, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-1, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-1, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-2, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-2, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-2, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-2, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-2, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-3, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-3, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-3, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-3, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-3, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-4, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-4, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-4, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-4, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-4, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-5, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-5, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-5, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-5, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-anyURI-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-maxLength-5, + which is derived by restriction of built-in type anyURI + by facet maxLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-1, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-1, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-1, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-1, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-1, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-2-1" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-2, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-2-2" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-2, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-2-3" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-2, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-2-4" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-2, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-2-5" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-2, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-3-1" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-3, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-3-2" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-3, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-3-3" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-3, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-3-4" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-3, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-3-5" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-3, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-4-1" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-4, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-4-2" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-4, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-4-3" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-4, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-4-4" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-4, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-5-1" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-5, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-5-2" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-5, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-5-3" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-5, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-5-4" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-5, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-minLength-5-5" origin="NIST"><description> + File: NISTSchema-anyURI-minLength-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-minLength-5, + which is derived by restriction of built-in type anyURI + by facet minLength with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-length-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-1, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-length-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-1, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-length-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-1, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-length-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-1, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-length-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-1, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-2-1" origin="NIST"><description> + File: NISTSchema-anyURI-length-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-2, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-2-2" origin="NIST"><description> + File: NISTSchema-anyURI-length-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-2, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-2-3" origin="NIST"><description> + File: NISTSchema-anyURI-length-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-2, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-2-4" origin="NIST"><description> + File: NISTSchema-anyURI-length-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-2, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-2-5" origin="NIST"><description> + File: NISTSchema-anyURI-length-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-2, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-3-1" origin="NIST"><description> + File: NISTSchema-anyURI-length-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-3, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-3-2" origin="NIST"><description> + File: NISTSchema-anyURI-length-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-3, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-3-3" origin="NIST"><description> + File: NISTSchema-anyURI-length-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-3, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-3-4" origin="NIST"><description> + File: NISTSchema-anyURI-length-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-3, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-3-5" origin="NIST"><description> + File: NISTSchema-anyURI-length-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-3, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-4-1" origin="NIST"><description> + File: NISTSchema-anyURI-length-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-4, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-4-2" origin="NIST"><description> + File: NISTSchema-anyURI-length-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-4, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-4-3" origin="NIST"><description> + File: NISTSchema-anyURI-length-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-4, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-4-4" origin="NIST"><description> + File: NISTSchema-anyURI-length-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-4, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-4-5" origin="NIST"><description> + File: NISTSchema-anyURI-length-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-4, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-5-1" origin="NIST"><description> + File: NISTSchema-anyURI-length-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-5, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-5-2" origin="NIST"><description> + File: NISTSchema-anyURI-length-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-5, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-5-3" origin="NIST"><description> + File: NISTSchema-anyURI-length-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-5, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-5-4" origin="NIST"><description> + File: NISTSchema-anyURI-length-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-5, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-length-5-5" origin="NIST"><description> + File: NISTSchema-anyURI-length-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-length-5, + which is derived by restriction of built-in type anyURI + by facet length with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-1, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{12}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-1, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{12}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-1, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{12}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-1, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{12}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-1, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{12}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-2-1" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-2, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{42}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-2-2" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-2, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{42}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-2-3" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-2, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{42}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-2-4" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-2, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{42}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-2-5" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-2, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{42}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-3-1" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-3, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{22}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-3-2" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-3, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{22}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-3-3" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-3, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{22}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-3-4" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-3, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{22}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-3-5" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-3, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{22}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-4-1" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-4, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{64}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-4-2" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-4, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{64}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-4-3" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-4, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{64}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-4-4" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-4, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{64}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-4-5" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-4, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{64}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-5-1" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-5, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{18}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-5-2" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-5, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{18}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-5-3" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-5, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{18}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-5-4" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-5, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{18}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-pattern-5-5" origin="NIST"><description> + File: NISTSchema-anyURI-pattern-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-pattern-5, + which is derived by restriction of built-in type anyURI + by facet pattern with a value of: ftp://ftp.[a-z]{18}.com + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-1, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + news://informationisinitTheandspecificati.org/ + gopher://theofferindustrykeyThetheserapidetcAConferencechai.gov/ + mailto:t@ofofinf.gov + http://www.thetoolsCommunitywirelessoftheDespitejo.com/ + news://toolsmatchgloballeadershipthedevicesofraiseddomainsinterop.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-1, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + news://informationisinitTheandspecificati.org/ + gopher://theofferindustrykeyThetheserapidetcAConferencechai.gov/ + mailto:t@ofofinf.gov + http://www.thetoolsCommunitywirelessoftheDespitejo.com/ + news://toolsmatchgloballeadershipthedevicesofraiseddomainsinterop.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-1, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + news://informationisinitTheandspecificati.org/ + gopher://theofferindustrykeyThetheserapidetcAConferencechai.gov/ + mailto:t@ofofinf.gov + http://www.thetoolsCommunitywirelessoftheDespitejo.com/ + news://toolsmatchgloballeadershipthedevicesofraiseddomainsinterop.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-1, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + news://informationisinitTheandspecificati.org/ + gopher://theofferindustrykeyThetheserapidetcAConferencechai.gov/ + mailto:t@ofofinf.gov + http://www.thetoolsCommunitywirelessoftheDespitejo.com/ + news://toolsmatchgloballeadershipthedevicesofraiseddomainsinterop.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-1, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + news://informationisinitTheandspecificati.org/ + gopher://theofferindustrykeyThetheserapidetcAConferencechai.gov/ + mailto:t@ofofinf.gov + http://www.thetoolsCommunitywirelessoftheDespitejo.com/ + news://toolsmatchgloballeadershipthedevicesofraiseddomainsinterop.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-2, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + ftp://theacomputersunambiguousnextOrganizationinvolvedhardw.edu/ + http://www.canthisthanmoretomanualshavetocommercedefineTherelatedwillu.org/ + ftp://wellsignifi.edu/ + ftp://ftp.ofthetremendousandgovernmentwhoDelawareindu.com/ + gopher://offerforensicsindustryexercisemanagetoensuretolawthelawrapid.edu/ + http://www.forestablishXML.org/ + ftp://ftp.ofallofmeettheforofmakevocabularyasbethisthetohelpandthed.org/ + telnet://filesoftheapplication.org/ + gopher://definingtheofXMLte.gov/ + ftp://intoautomatingprojectinclu.edu/ + ftp://ftp.commercetheadventembeddedtoStructuredandXM.com/ + telnet://capabilitiesAfromdisplayingkeyindustrykn.com/ + ftp://ftp.andtheprintmeans.com/ + gopher://Asaddition.gov/ + http://www.gprofilesasofrecentobjectsdirectionsandwi.com/ + http://www.vend.org/ + http://AnPervasivehasconsortiums.edu/ + http://toandlanguagetoreferencesetConfo.org/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-2, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + ftp://theacomputersunambiguousnextOrganizationinvolvedhardw.edu/ + http://www.canthisthanmoretomanualshavetocommercedefineTherelatedwillu.org/ + ftp://wellsignifi.edu/ + ftp://ftp.ofthetremendousandgovernmentwhoDelawareindu.com/ + gopher://offerforensicsindustryexercisemanagetoensuretolawthelawrapid.edu/ + http://www.forestablishXML.org/ + ftp://ftp.ofallofmeettheforofmakevocabularyasbethisthetohelpandthed.org/ + telnet://filesoftheapplication.org/ + gopher://definingtheofXMLte.gov/ + ftp://intoautomatingprojectinclu.edu/ + ftp://ftp.commercetheadventembeddedtoStructuredandXM.com/ + telnet://capabilitiesAfromdisplayingkeyindustrykn.com/ + ftp://ftp.andtheprintmeans.com/ + gopher://Asaddition.gov/ + http://www.gprofilesasofrecentobjectsdirectionsandwi.com/ + http://www.vend.org/ + http://AnPervasivehasconsortiums.edu/ + http://toandlanguagetoreferencesetConfo.org/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-2, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + ftp://theacomputersunambiguousnextOrganizationinvolvedhardw.edu/ + http://www.canthisthanmoretomanualshavetocommercedefineTherelatedwillu.org/ + ftp://wellsignifi.edu/ + ftp://ftp.ofthetremendousandgovernmentwhoDelawareindu.com/ + gopher://offerforensicsindustryexercisemanagetoensuretolawthelawrapid.edu/ + http://www.forestablishXML.org/ + ftp://ftp.ofallofmeettheforofmakevocabularyasbethisthetohelpandthed.org/ + telnet://filesoftheapplication.org/ + gopher://definingtheofXMLte.gov/ + ftp://intoautomatingprojectinclu.edu/ + ftp://ftp.commercetheadventembeddedtoStructuredandXM.com/ + telnet://capabilitiesAfromdisplayingkeyindustrykn.com/ + ftp://ftp.andtheprintmeans.com/ + gopher://Asaddition.gov/ + http://www.gprofilesasofrecentobjectsdirectionsandwi.com/ + http://www.vend.org/ + http://AnPervasivehasconsortiums.edu/ + http://toandlanguagetoreferencesetConfo.org/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-2, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + ftp://theacomputersunambiguousnextOrganizationinvolvedhardw.edu/ + http://www.canthisthanmoretomanualshavetocommercedefineTherelatedwillu.org/ + ftp://wellsignifi.edu/ + ftp://ftp.ofthetremendousandgovernmentwhoDelawareindu.com/ + gopher://offerforensicsindustryexercisemanagetoensuretolawthelawrapid.edu/ + http://www.forestablishXML.org/ + ftp://ftp.ofallofmeettheforofmakevocabularyasbethisthetohelpandthed.org/ + telnet://filesoftheapplication.org/ + gopher://definingtheofXMLte.gov/ + ftp://intoautomatingprojectinclu.edu/ + ftp://ftp.commercetheadventembeddedtoStructuredandXM.com/ + telnet://capabilitiesAfromdisplayingkeyindustrykn.com/ + ftp://ftp.andtheprintmeans.com/ + gopher://Asaddition.gov/ + http://www.gprofilesasofrecentobjectsdirectionsandwi.com/ + http://www.vend.org/ + http://AnPervasivehasconsortiums.edu/ + http://toandlanguagetoreferencesetConfo.org/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-2, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + ftp://theacomputersunambiguousnextOrganizationinvolvedhardw.edu/ + http://www.canthisthanmoretomanualshavetocommercedefineTherelatedwillu.org/ + ftp://wellsignifi.edu/ + ftp://ftp.ofthetremendousandgovernmentwhoDelawareindu.com/ + gopher://offerforensicsindustryexercisemanagetoensuretolawthelawrapid.edu/ + http://www.forestablishXML.org/ + ftp://ftp.ofallofmeettheforofmakevocabularyasbethisthetohelpandthed.org/ + telnet://filesoftheapplication.org/ + gopher://definingtheofXMLte.gov/ + ftp://intoautomatingprojectinclu.edu/ + ftp://ftp.commercetheadventembeddedtoStructuredandXM.com/ + telnet://capabilitiesAfromdisplayingkeyindustrykn.com/ + ftp://ftp.andtheprintmeans.com/ + gopher://Asaddition.gov/ + http://www.gprofilesasofrecentobjectsdirectionsandwi.com/ + http://www.vend.org/ + http://AnPervasivehasconsortiums.edu/ + http://toandlanguagetoreferencesetConfo.org/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-3, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + gopher://theindustryacademiabybothbuiltwirelessthegroupsoflo.org/ + telnet://InternetdiscoverybelawalsoRecommend.edu/ + mailto:emeetnec@DOMdatabetweenwillawithmanipulateandaconstituentfortoolsf.com + telnet://thetheascertainrichwebCon.com/ + http://withhelpingda.com/ + ftp://ftp.arelooking.org/ + ftp://andmatchmustenvironment.org/ + gopher://autom.edu/ + mailto:ofWit@rapidbem.gov + telnet://byprototypesFacilitationdefinesparticipaterequestingc.gov/ + gopher://ofcos.com/ + telnet://informationgandandofmostcomputerissuestoinProjectEC.gov/ + http://www.withrepositoryknownfiletheparticularlythesignatureThemake.gov/ + ftp://andthoseemergingfil.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-3, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + gopher://theindustryacademiabybothbuiltwirelessthegroupsoflo.org/ + telnet://InternetdiscoverybelawalsoRecommend.edu/ + mailto:emeetnec@DOMdatabetweenwillawithmanipulateandaconstituentfortoolsf.com + telnet://thetheascertainrichwebCon.com/ + http://withhelpingda.com/ + ftp://ftp.arelooking.org/ + ftp://andmatchmustenvironment.org/ + gopher://autom.edu/ + mailto:ofWit@rapidbem.gov + telnet://byprototypesFacilitationdefinesparticipaterequestingc.gov/ + gopher://ofcos.com/ + telnet://informationgandandofmostcomputerissuestoinProjectEC.gov/ + http://www.withrepositoryknownfiletheparticularlythesignatureThemake.gov/ + ftp://andthoseemergingfil.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-3, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + gopher://theindustryacademiabybothbuiltwirelessthegroupsoflo.org/ + telnet://InternetdiscoverybelawalsoRecommend.edu/ + mailto:emeetnec@DOMdatabetweenwillawithmanipulateandaconstituentfortoolsf.com + telnet://thetheascertainrichwebCon.com/ + http://withhelpingda.com/ + ftp://ftp.arelooking.org/ + ftp://andmatchmustenvironment.org/ + gopher://autom.edu/ + mailto:ofWit@rapidbem.gov + telnet://byprototypesFacilitationdefinesparticipaterequestingc.gov/ + gopher://ofcos.com/ + telnet://informationgandandofmostcomputerissuestoinProjectEC.gov/ + http://www.withrepositoryknownfiletheparticularlythesignatureThemake.gov/ + ftp://andthoseemergingfil.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-3, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + gopher://theindustryacademiabybothbuiltwirelessthegroupsoflo.org/ + telnet://InternetdiscoverybelawalsoRecommend.edu/ + mailto:emeetnec@DOMdatabetweenwillawithmanipulateandaconstituentfortoolsf.com + telnet://thetheascertainrichwebCon.com/ + http://withhelpingda.com/ + ftp://ftp.arelooking.org/ + ftp://andmatchmustenvironment.org/ + gopher://autom.edu/ + mailto:ofWit@rapidbem.gov + telnet://byprototypesFacilitationdefinesparticipaterequestingc.gov/ + gopher://ofcos.com/ + telnet://informationgandandofmostcomputerissuestoinProjectEC.gov/ + http://www.withrepositoryknownfiletheparticularlythesignatureThemake.gov/ + ftp://andthoseemergingfil.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-3, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + gopher://theindustryacademiabybothbuiltwirelessthegroupsoflo.org/ + telnet://InternetdiscoverybelawalsoRecommend.edu/ + mailto:emeetnec@DOMdatabetweenwillawithmanipulateandaconstituentfortoolsf.com + telnet://thetheascertainrichwebCon.com/ + http://withhelpingda.com/ + ftp://ftp.arelooking.org/ + ftp://andmatchmustenvironment.org/ + gopher://autom.edu/ + mailto:ofWit@rapidbem.gov + telnet://byprototypesFacilitationdefinesparticipaterequestingc.gov/ + gopher://ofcos.com/ + telnet://informationgandandofmostcomputerissuestoinProjectEC.gov/ + http://www.withrepositoryknownfiletheparticularlythesignatureThemake.gov/ + ftp://andthoseemergingfil.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-4, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:knownavailabletotheseo@toprocessdocumentsappropriateprovidesofid.gov + http://XMLtoofdefiningECpopularearlyinformationbewit.edu/ + mailto:a@thesuccessglob.edu + telnet://thegroupsindustryhardwaredefinesestablishandDevelopItwithout.org/ + news://A.com + telnet://SimulationwhichInternetsettheabilityarethe.org/ + ftp://ftp.sthecanchairsdiscoveryregistryforsubjectsoft.edu/ + news://conformancebetimewebaspectsneedsandgtoofaccessibleSOCofofandUXSLb.com/ + ftp://addressrevo.edu/ + mailto:thatv@repositoryinteractinginreposit.org + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-4, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:knownavailabletotheseo@toprocessdocumentsappropriateprovidesofid.gov + http://XMLtoofdefiningECpopularearlyinformationbewit.edu/ + mailto:a@thesuccessglob.edu + telnet://thegroupsindustryhardwaredefinesestablishandDevelopItwithout.org/ + news://A.com + telnet://SimulationwhichInternetsettheabilityarethe.org/ + ftp://ftp.sthecanchairsdiscoveryregistryforsubjectsoft.edu/ + news://conformancebetimewebaspectsneedsandgtoofaccessibleSOCofofandUXSLb.com/ + ftp://addressrevo.edu/ + mailto:thatv@repositoryinteractinginreposit.org + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-4, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:knownavailabletotheseo@toprocessdocumentsappropriateprovidesofid.gov + http://XMLtoofdefiningECpopularearlyinformationbewit.edu/ + mailto:a@thesuccessglob.edu + telnet://thegroupsindustryhardwaredefinesestablishandDevelopItwithout.org/ + news://A.com + telnet://SimulationwhichInternetsettheabilityarethe.org/ + ftp://ftp.sthecanchairsdiscoveryregistryforsubjectsoft.edu/ + news://conformancebetimewebaspectsneedsandgtoofaccessibleSOCofofandUXSLb.com/ + ftp://addressrevo.edu/ + mailto:thatv@repositoryinteractinginreposit.org + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-4, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:knownavailabletotheseo@toprocessdocumentsappropriateprovidesofid.gov + http://XMLtoofdefiningECpopularearlyinformationbewit.edu/ + mailto:a@thesuccessglob.edu + telnet://thegroupsindustryhardwaredefinesestablishandDevelopItwithout.org/ + news://A.com + telnet://SimulationwhichInternetsettheabilityarethe.org/ + ftp://ftp.sthecanchairsdiscoveryregistryforsubjectsoft.edu/ + news://conformancebetimewebaspectsneedsandgtoofaccessibleSOCofofandUXSLb.com/ + ftp://addressrevo.edu/ + mailto:thatv@repositoryinteractinginreposit.org + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-4, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:knownavailabletotheseo@toprocessdocumentsappropriateprovidesofid.gov + http://XMLtoofdefiningECpopularearlyinformationbewit.edu/ + mailto:a@thesuccessglob.edu + telnet://thegroupsindustryhardwaredefinesestablishandDevelopItwithout.org/ + news://A.com + telnet://SimulationwhichInternetsettheabilityarethe.org/ + ftp://ftp.sthecanchairsdiscoveryregistryforsubjectsoft.edu/ + news://conformancebetimewebaspectsneedsandgtoofaccessibleSOCofofandUXSLb.com/ + ftp://addressrevo.edu/ + mailto:thatv@repositoryinteractinginreposit.org + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-5, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:@ConductCommitteeofSubco.gov + http://e.com + ftp://ftp.alsofacttoOASISpervasiveDOMtheinternationalatheinformationt.gov/ + mailto:be@findandsystemsbettermatchmanageDevelopwebdefini.gov + gopher://ArepositorythenprocessesLangu.gov/ + telnet://careandcanMa.org/ + gopher://XSLaccessOASIStofortheTheInternetresourc.com/ + telnet://totechnologieswithaspar.gov/ + http://degreeConformanceregistryofamanualwilltodailyoftoolsthegainp.gov/ + ftp://discoverytheasdeviceswhichmustsy.org/ + ftp://forAdynamicaprofiletopartnerscrea.edu/ + news://industrycapabilitieswirelesspr.org/ + ftp://ftp.effectiveusedwil.com/ + ftp://ftp.issuesfourExtensibleandTheadopti.com/ + ftp://ftp.data.com/ + news://theapproachthetransactfacilitatesAdditionallywirelessrefe.gov/ + gopher://Extensiblepromine.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-5, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:@ConductCommitteeofSubco.gov + http://e.com + ftp://ftp.alsofacttoOASISpervasiveDOMtheinternationalatheinformationt.gov/ + mailto:be@findandsystemsbettermatchmanageDevelopwebdefini.gov + gopher://ArepositorythenprocessesLangu.gov/ + telnet://careandcanMa.org/ + gopher://XSLaccessOASIStofortheTheInternetresourc.com/ + telnet://totechnologieswithaspar.gov/ + http://degreeConformanceregistryofamanualwilltodailyoftoolsthegainp.gov/ + ftp://discoverytheasdeviceswhichmustsy.org/ + ftp://forAdynamicaprofiletopartnerscrea.edu/ + news://industrycapabilitieswirelesspr.org/ + ftp://ftp.effectiveusedwil.com/ + ftp://ftp.issuesfourExtensibleandTheadopti.com/ + ftp://ftp.data.com/ + news://theapproachthetransactfacilitatesAdditionallywirelessrefe.gov/ + gopher://Extensiblepromine.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-5, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:@ConductCommitteeofSubco.gov + http://e.com + ftp://ftp.alsofacttoOASISpervasiveDOMtheinternationalatheinformationt.gov/ + mailto:be@findandsystemsbettermatchmanageDevelopwebdefini.gov + gopher://ArepositorythenprocessesLangu.gov/ + telnet://careandcanMa.org/ + gopher://XSLaccessOASIStofortheTheInternetresourc.com/ + telnet://totechnologieswithaspar.gov/ + http://degreeConformanceregistryofamanualwilltodailyoftoolsthegainp.gov/ + ftp://discoverytheasdeviceswhichmustsy.org/ + ftp://forAdynamicaprofiletopartnerscrea.edu/ + news://industrycapabilitieswirelesspr.org/ + ftp://ftp.effectiveusedwil.com/ + ftp://ftp.issuesfourExtensibleandTheadopti.com/ + ftp://ftp.data.com/ + news://theapproachthetransactfacilitatesAdditionallywirelessrefe.gov/ + gopher://Extensiblepromine.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-5, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:@ConductCommitteeofSubco.gov + http://e.com + ftp://ftp.alsofacttoOASISpervasiveDOMtheinternationalatheinformationt.gov/ + mailto:be@findandsystemsbettermatchmanageDevelopwebdefini.gov + gopher://ArepositorythenprocessesLangu.gov/ + telnet://careandcanMa.org/ + gopher://XSLaccessOASIStofortheTheInternetresourc.com/ + telnet://totechnologieswithaspar.gov/ + http://degreeConformanceregistryofamanualwilltodailyoftoolsthegainp.gov/ + ftp://discoverytheasdeviceswhichmustsy.org/ + ftp://forAdynamicaprofiletopartnerscrea.edu/ + news://industrycapabilitieswirelesspr.org/ + ftp://ftp.effectiveusedwil.com/ + ftp://ftp.issuesfourExtensibleandTheadopti.com/ + ftp://ftp.data.com/ + news://theapproachthetransactfacilitatesAdditionallywirelessrefe.gov/ + gopher://Extensiblepromine.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-anyURI-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-anyURI-enumeration-5, + which is derived by restriction of built-in type anyURI + by facet enumeration with values of: + mailto:@ConductCommitteeofSubco.gov + http://e.com + ftp://ftp.alsofacttoOASISpervasiveDOMtheinternationalatheinformationt.gov/ + mailto:be@findandsystemsbettermatchmanageDevelopwebdefini.gov + gopher://ArepositorythenprocessesLangu.gov/ + telnet://careandcanMa.org/ + gopher://XSLaccessOASIStofortheTheInternetresourc.com/ + telnet://totechnologieswithaspar.gov/ + http://degreeConformanceregistryofamanualwilltodailyoftoolsthegainp.gov/ + ftp://discoverytheasdeviceswhichmustsy.org/ + ftp://forAdynamicaprofiletopartnerscrea.edu/ + news://industrycapabilitieswirelesspr.org/ + ftp://ftp.effectiveusedwil.com/ + ftp://ftp.issuesfourExtensibleandTheadopti.com/ + ftp://ftp.data.com/ + news://theapproachthetransactfacilitatesAdditionallywirelessrefe.gov/ + gopher://Extensiblepromine.edu/ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-anyURI-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-whiteSpace-1, + which is derived by restriction of built-in type anyURI + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-anyURI-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-whiteSpace-1, + which is derived by restriction of built-in type anyURI + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-anyURI-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-whiteSpace-1, + which is derived by restriction of built-in type anyURI + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-anyURI-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-whiteSpace-1, + which is derived by restriction of built-in type anyURI + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-anyURI-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-anyURI-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-anyURI-whiteSpace-1, + which is derived by restriction of built-in type anyURI + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-anyURI-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-anyURI-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-1, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-1, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-1, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-1, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-1, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-2, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-2, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-2, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-2, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-2, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-3, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 69 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-3, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 69 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-3, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 69 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-3, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 69 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-3, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 69 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-4, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-4, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-4, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-4, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-4, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-5, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-5, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-5, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-5, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-base64Binary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-maxLength-5, + which is derived by restriction of built-in type base64Binary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-1, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-1, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-1, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-1, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-1, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-2-1" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-2, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-2-2" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-2, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-2-3" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-2, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-2-4" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-2, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-2-5" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-2, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-3-1" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-3, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-3-2" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-3, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-3-3" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-3, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-3-4" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-3, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-3-5" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-3, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 53 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-4-1" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-4, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 39 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-4-2" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-4, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 39 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-4-3" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-4, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 39 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-4-4" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-4, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 39 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-4-5" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-4, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 39 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-5-1" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-5, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-5-2" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-5, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-5-3" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-5, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-5-4" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-5, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-minLength-5-5" origin="NIST"><description> + File: NISTSchema-base64Binary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-minLength-5, + which is derived by restriction of built-in type base64Binary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-length-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-1, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-length-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-1, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-length-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-1, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-length-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-1, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-length-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-1, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-2-1" origin="NIST"><description> + File: NISTSchema-base64Binary-length-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-2, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-2-2" origin="NIST"><description> + File: NISTSchema-base64Binary-length-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-2, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-2-3" origin="NIST"><description> + File: NISTSchema-base64Binary-length-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-2, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-2-4" origin="NIST"><description> + File: NISTSchema-base64Binary-length-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-2, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-2-5" origin="NIST"><description> + File: NISTSchema-base64Binary-length-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-2, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-3-1" origin="NIST"><description> + File: NISTSchema-base64Binary-length-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-3, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-3-2" origin="NIST"><description> + File: NISTSchema-base64Binary-length-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-3, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-3-3" origin="NIST"><description> + File: NISTSchema-base64Binary-length-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-3, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-3-4" origin="NIST"><description> + File: NISTSchema-base64Binary-length-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-3, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-3-5" origin="NIST"><description> + File: NISTSchema-base64Binary-length-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-3, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-4-1" origin="NIST"><description> + File: NISTSchema-base64Binary-length-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-4, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-4-2" origin="NIST"><description> + File: NISTSchema-base64Binary-length-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-4, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-4-3" origin="NIST"><description> + File: NISTSchema-base64Binary-length-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-4, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-4-4" origin="NIST"><description> + File: NISTSchema-base64Binary-length-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-4, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-4-5" origin="NIST"><description> + File: NISTSchema-base64Binary-length-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-4, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-5-1" origin="NIST"><description> + File: NISTSchema-base64Binary-length-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-5, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-5-2" origin="NIST"><description> + File: NISTSchema-base64Binary-length-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-5, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-5-3" origin="NIST"><description> + File: NISTSchema-base64Binary-length-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-5, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-5-4" origin="NIST"><description> + File: NISTSchema-base64Binary-length-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-5, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-length-5-5" origin="NIST"><description> + File: NISTSchema-base64Binary-length-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-length-5, + which is derived by restriction of built-in type base64Binary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-1, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{32} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-1, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{32} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-1, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{32} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-1, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{32} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-1, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{32} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-2-1" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-2, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-2-2" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-2, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-2-3" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-2, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-2-4" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-2, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-2-5" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-2, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-3-1" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-3, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-3-2" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-3, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-3-3" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-3, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-3-4" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-3, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-3-5" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-3, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-4-1" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-4, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-4-2" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-4, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-4-3" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-4, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-4-4" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-4, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-4-5" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-4, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-5-1" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-5, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-5-2" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-5, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-5-3" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-5, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-5-4" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-5, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-pattern-5-5" origin="NIST"><description> + File: NISTSchema-base64Binary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-pattern-5, + which is derived by restriction of built-in type base64Binary + by facet pattern with a value of: [a-zA-Z0-9+/]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-1, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + d2d4bmt3aWd1YWFuZHBqdWlqbnZqaHFobXZvd3ludWVkc2dhdGZvbmJqdWVreW91Y3drbGhvcA== + eWt5bmJsYmlwb21mdGJ4eWJiYmZrand0cGJjeWZuc3VvbGp0YXFqeHY= + ZGk= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-1, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + d2d4bmt3aWd1YWFuZHBqdWlqbnZqaHFobXZvd3ludWVkc2dhdGZvbmJqdWVreW91Y3drbGhvcA== + eWt5bmJsYmlwb21mdGJ4eWJiYmZrand0cGJjeWZuc3VvbGp0YXFqeHY= + ZGk= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-1, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + d2d4bmt3aWd1YWFuZHBqdWlqbnZqaHFobXZvd3ludWVkc2dhdGZvbmJqdWVreW91Y3drbGhvcA== + eWt5bmJsYmlwb21mdGJ4eWJiYmZrand0cGJjeWZuc3VvbGp0YXFqeHY= + ZGk= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-1, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + d2d4bmt3aWd1YWFuZHBqdWlqbnZqaHFobXZvd3ludWVkc2dhdGZvbmJqdWVreW91Y3drbGhvcA== + eWt5bmJsYmlwb21mdGJ4eWJiYmZrand0cGJjeWZuc3VvbGp0YXFqeHY= + ZGk= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-1, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + d2d4bmt3aWd1YWFuZHBqdWlqbnZqaHFobXZvd3ludWVkc2dhdGZvbmJqdWVreW91Y3drbGhvcA== + eWt5bmJsYmlwb21mdGJ4eWJiYmZrand0cGJjeWZuc3VvbGp0YXFqeHY= + ZGk= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-2, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + YW13aHRyYXdocGh0eG11aGt2dGluZGt2Z2hjZ21jam5qZnRwZW12cWl1YmVydGRwZQ== + cmhlYmd0aG9uZnFraXluZWJraGdyYXlsZmI= + bHlsY2JmaXFjaW9ubmg= + eXl0dWRlY2NjcW9tcGxhb2lsc2JwcGNnb3R4cWlsZnRsb3ZqaGF3dWJxdmNqZ2dpZ3Jrcw== + Z2t1dHJtb3lqZmtzZ2d4cWVob29mdnhybWVvdmJ4c3dhZHF0cXZoZWh1ZmJic2RhZ3ljYmVuZXljanJobm5uZHlocw== + ZmxvZA== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-2, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + YW13aHRyYXdocGh0eG11aGt2dGluZGt2Z2hjZ21jam5qZnRwZW12cWl1YmVydGRwZQ== + cmhlYmd0aG9uZnFraXluZWJraGdyYXlsZmI= + bHlsY2JmaXFjaW9ubmg= + eXl0dWRlY2NjcW9tcGxhb2lsc2JwcGNnb3R4cWlsZnRsb3ZqaGF3dWJxdmNqZ2dpZ3Jrcw== + Z2t1dHJtb3lqZmtzZ2d4cWVob29mdnhybWVvdmJ4c3dhZHF0cXZoZWh1ZmJic2RhZ3ljYmVuZXljanJobm5uZHlocw== + ZmxvZA== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-2, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + YW13aHRyYXdocGh0eG11aGt2dGluZGt2Z2hjZ21jam5qZnRwZW12cWl1YmVydGRwZQ== + cmhlYmd0aG9uZnFraXluZWJraGdyYXlsZmI= + bHlsY2JmaXFjaW9ubmg= + eXl0dWRlY2NjcW9tcGxhb2lsc2JwcGNnb3R4cWlsZnRsb3ZqaGF3dWJxdmNqZ2dpZ3Jrcw== + Z2t1dHJtb3lqZmtzZ2d4cWVob29mdnhybWVvdmJ4c3dhZHF0cXZoZWh1ZmJic2RhZ3ljYmVuZXljanJobm5uZHlocw== + ZmxvZA== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-2, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + YW13aHRyYXdocGh0eG11aGt2dGluZGt2Z2hjZ21jam5qZnRwZW12cWl1YmVydGRwZQ== + cmhlYmd0aG9uZnFraXluZWJraGdyYXlsZmI= + bHlsY2JmaXFjaW9ubmg= + eXl0dWRlY2NjcW9tcGxhb2lsc2JwcGNnb3R4cWlsZnRsb3ZqaGF3dWJxdmNqZ2dpZ3Jrcw== + Z2t1dHJtb3lqZmtzZ2d4cWVob29mdnhybWVvdmJ4c3dhZHF0cXZoZWh1ZmJic2RhZ3ljYmVuZXljanJobm5uZHlocw== + ZmxvZA== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-2, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + YW13aHRyYXdocGh0eG11aGt2dGluZGt2Z2hjZ21jam5qZnRwZW12cWl1YmVydGRwZQ== + cmhlYmd0aG9uZnFraXluZWJraGdyYXlsZmI= + bHlsY2JmaXFjaW9ubmg= + eXl0dWRlY2NjcW9tcGxhb2lsc2JwcGNnb3R4cWlsZnRsb3ZqaGF3dWJxdmNqZ2dpZ3Jrcw== + Z2t1dHJtb3lqZmtzZ2d4cWVob29mdnhybWVvdmJ4c3dhZHF0cXZoZWh1ZmJic2RhZ3ljYmVuZXljanJobm5uZHlocw== + ZmxvZA== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-3, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + dG9xbXJzZ2txdWhneHRva3ljdXJhbHh2bnhuYnRuaXV2eGxtcWVwamxxdGdyYWxpb2g= + YWdlaWptb2dqdGVoc2RmZWRqa3Fib2p2d2NtaWt3eHJwa2lmb2lld2plaHJ3eXVjYmhnbmtrc3BuaXNwbg== + cGRvdm5yamJuZm51eWRub3RhbHBqYXR2bmdpc3liZ3NwcHJvbG51d3VkaGtyY25scGpoaXZ0bGFha3B1bg== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-3, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + dG9xbXJzZ2txdWhneHRva3ljdXJhbHh2bnhuYnRuaXV2eGxtcWVwamxxdGdyYWxpb2g= + YWdlaWptb2dqdGVoc2RmZWRqa3Fib2p2d2NtaWt3eHJwa2lmb2lld2plaHJ3eXVjYmhnbmtrc3BuaXNwbg== + cGRvdm5yamJuZm51eWRub3RhbHBqYXR2bmdpc3liZ3NwcHJvbG51d3VkaGtyY25scGpoaXZ0bGFha3B1bg== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-3, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + dG9xbXJzZ2txdWhneHRva3ljdXJhbHh2bnhuYnRuaXV2eGxtcWVwamxxdGdyYWxpb2g= + YWdlaWptb2dqdGVoc2RmZWRqa3Fib2p2d2NtaWt3eHJwa2lmb2lld2plaHJ3eXVjYmhnbmtrc3BuaXNwbg== + cGRvdm5yamJuZm51eWRub3RhbHBqYXR2bmdpc3liZ3NwcHJvbG51d3VkaGtyY25scGpoaXZ0bGFha3B1bg== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-3, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + dG9xbXJzZ2txdWhneHRva3ljdXJhbHh2bnhuYnRuaXV2eGxtcWVwamxxdGdyYWxpb2g= + YWdlaWptb2dqdGVoc2RmZWRqa3Fib2p2d2NtaWt3eHJwa2lmb2lld2plaHJ3eXVjYmhnbmtrc3BuaXNwbg== + cGRvdm5yamJuZm51eWRub3RhbHBqYXR2bmdpc3liZ3NwcHJvbG51d3VkaGtyY25scGpoaXZ0bGFha3B1bg== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-3, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + dG9xbXJzZ2txdWhneHRva3ljdXJhbHh2bnhuYnRuaXV2eGxtcWVwamxxdGdyYWxpb2g= + YWdlaWptb2dqdGVoc2RmZWRqa3Fib2p2d2NtaWt3eHJwa2lmb2lld2plaHJ3eXVjYmhnbmtrc3BuaXNwbg== + cGRvdm5yamJuZm51eWRub3RhbHBqYXR2bmdpc3liZ3NwcHJvbG51d3VkaGtyY25scGpoaXZ0bGFha3B1bg== + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-4, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + anhob3hmeXVwbHBkcWphdndzbmNteHdhaGpzZXZleWJjdHh1anF2b2duYWtnbHd1 + dmlzdXZvamx4dmJ3YmdoaWp3cXF1YXNwZW93bml0eGxieXFoaGVvYXdvcHNzcXZucXhva3h2anJrZWVkeXN4bnB5ZWxuaA== + YmFibGlqZ3F3dG1sb21ja3FlZ3J4eGV3ZG0= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-4, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + anhob3hmeXVwbHBkcWphdndzbmNteHdhaGpzZXZleWJjdHh1anF2b2duYWtnbHd1 + dmlzdXZvamx4dmJ3YmdoaWp3cXF1YXNwZW93bml0eGxieXFoaGVvYXdvcHNzcXZucXhva3h2anJrZWVkeXN4bnB5ZWxuaA== + YmFibGlqZ3F3dG1sb21ja3FlZ3J4eGV3ZG0= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-4, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + anhob3hmeXVwbHBkcWphdndzbmNteHdhaGpzZXZleWJjdHh1anF2b2duYWtnbHd1 + dmlzdXZvamx4dmJ3YmdoaWp3cXF1YXNwZW93bml0eGxieXFoaGVvYXdvcHNzcXZucXhva3h2anJrZWVkeXN4bnB5ZWxuaA== + YmFibGlqZ3F3dG1sb21ja3FlZ3J4eGV3ZG0= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-4, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + anhob3hmeXVwbHBkcWphdndzbmNteHdhaGpzZXZleWJjdHh1anF2b2duYWtnbHd1 + dmlzdXZvamx4dmJ3YmdoaWp3cXF1YXNwZW93bml0eGxieXFoaGVvYXdvcHNzcXZucXhva3h2anJrZWVkeXN4bnB5ZWxuaA== + YmFibGlqZ3F3dG1sb21ja3FlZ3J4eGV3ZG0= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-4, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + anhob3hmeXVwbHBkcWphdndzbmNteHdhaGpzZXZleWJjdHh1anF2b2duYWtnbHd1 + dmlzdXZvamx4dmJ3YmdoaWp3cXF1YXNwZW93bml0eGxieXFoaGVvYXdvcHNzcXZucXhva3h2anJrZWVkeXN4bnB5ZWxuaA== + YmFibGlqZ3F3dG1sb21ja3FlZ3J4eGV3ZG0= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-5, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + bG9saWNlcmZna2x4c2hjdWtwY25vaWlvZg== + eHZ2dG5scHNxamhidmJxZ3dmYndkZ3BsZHZobmVmZ3Ro + ZXFrcWtka3l0b2Jxa2d3c2VtcGlya3VmaHR1cXlhc2R1ZmV5ZWJl + bmJobGdjdWVz + cm51dmhwZWpucXl3YnhmZGZjcXFqa2Q= + d2Jta2JqY2h0b2pyYnRjaWJrb3l2a3B1ZGlqYXFqY29kZHloeG1wdmx1bXhrZ3J0eWlsYmhmYnNpcm1mbXVkbmtheA== + YmptdWdmZG9kbWJxc2dndnZjcnVoZnRjb3ZidXhoa2h2ZndvZWR4bGZoYnhta3N3b2I= + b3RzeW9nd2xueGFibWpoeHFydWNhYWp4cWxxc3JuYWx1bXNnYmp2ZHV2bG8= + aGdsY3d0bG50bmNuaGxyZGprdWh1bHloYXRqd2llZWFoam12YXB3ZXdwZHJhd3FjaWdqeXlpc2I= + cnNudGF0cmxjb29jeWRhZGFmcndlc21rZ3BkZ3FzdGRwdXFydWxsZ2RyZnZ5a2pqaXBydXV1aXRsdGZzaWZwZXNxY3Z5cXNs + eXZibXZsamtrZHJhc2VpeXRneWhmcHBlYnlpaQ== + YmtnaWp3ZXRneWlyaWlmYnN1dnRpY3BwZGFyZnZ2cGJkcm1udm5oZ25oeHdtaHZidXZqc29laW9xbHE= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-5, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + bG9saWNlcmZna2x4c2hjdWtwY25vaWlvZg== + eHZ2dG5scHNxamhidmJxZ3dmYndkZ3BsZHZobmVmZ3Ro + ZXFrcWtka3l0b2Jxa2d3c2VtcGlya3VmaHR1cXlhc2R1ZmV5ZWJl + bmJobGdjdWVz + cm51dmhwZWpucXl3YnhmZGZjcXFqa2Q= + d2Jta2JqY2h0b2pyYnRjaWJrb3l2a3B1ZGlqYXFqY29kZHloeG1wdmx1bXhrZ3J0eWlsYmhmYnNpcm1mbXVkbmtheA== + YmptdWdmZG9kbWJxc2dndnZjcnVoZnRjb3ZidXhoa2h2ZndvZWR4bGZoYnhta3N3b2I= + b3RzeW9nd2xueGFibWpoeHFydWNhYWp4cWxxc3JuYWx1bXNnYmp2ZHV2bG8= + aGdsY3d0bG50bmNuaGxyZGprdWh1bHloYXRqd2llZWFoam12YXB3ZXdwZHJhd3FjaWdqeXlpc2I= + cnNudGF0cmxjb29jeWRhZGFmcndlc21rZ3BkZ3FzdGRwdXFydWxsZ2RyZnZ5a2pqaXBydXV1aXRsdGZzaWZwZXNxY3Z5cXNs + eXZibXZsamtrZHJhc2VpeXRneWhmcHBlYnlpaQ== + YmtnaWp3ZXRneWlyaWlmYnN1dnRpY3BwZGFyZnZ2cGJkcm1udm5oZ25oeHdtaHZidXZqc29laW9xbHE= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-5, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + bG9saWNlcmZna2x4c2hjdWtwY25vaWlvZg== + eHZ2dG5scHNxamhidmJxZ3dmYndkZ3BsZHZobmVmZ3Ro + ZXFrcWtka3l0b2Jxa2d3c2VtcGlya3VmaHR1cXlhc2R1ZmV5ZWJl + bmJobGdjdWVz + cm51dmhwZWpucXl3YnhmZGZjcXFqa2Q= + d2Jta2JqY2h0b2pyYnRjaWJrb3l2a3B1ZGlqYXFqY29kZHloeG1wdmx1bXhrZ3J0eWlsYmhmYnNpcm1mbXVkbmtheA== + YmptdWdmZG9kbWJxc2dndnZjcnVoZnRjb3ZidXhoa2h2ZndvZWR4bGZoYnhta3N3b2I= + b3RzeW9nd2xueGFibWpoeHFydWNhYWp4cWxxc3JuYWx1bXNnYmp2ZHV2bG8= + aGdsY3d0bG50bmNuaGxyZGprdWh1bHloYXRqd2llZWFoam12YXB3ZXdwZHJhd3FjaWdqeXlpc2I= + cnNudGF0cmxjb29jeWRhZGFmcndlc21rZ3BkZ3FzdGRwdXFydWxsZ2RyZnZ5a2pqaXBydXV1aXRsdGZzaWZwZXNxY3Z5cXNs + eXZibXZsamtrZHJhc2VpeXRneWhmcHBlYnlpaQ== + YmtnaWp3ZXRneWlyaWlmYnN1dnRpY3BwZGFyZnZ2cGJkcm1udm5oZ25oeHdtaHZidXZqc29laW9xbHE= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-5, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + bG9saWNlcmZna2x4c2hjdWtwY25vaWlvZg== + eHZ2dG5scHNxamhidmJxZ3dmYndkZ3BsZHZobmVmZ3Ro + ZXFrcWtka3l0b2Jxa2d3c2VtcGlya3VmaHR1cXlhc2R1ZmV5ZWJl + bmJobGdjdWVz + cm51dmhwZWpucXl3YnhmZGZjcXFqa2Q= + d2Jta2JqY2h0b2pyYnRjaWJrb3l2a3B1ZGlqYXFqY29kZHloeG1wdmx1bXhrZ3J0eWlsYmhmYnNpcm1mbXVkbmtheA== + YmptdWdmZG9kbWJxc2dndnZjcnVoZnRjb3ZidXhoa2h2ZndvZWR4bGZoYnhta3N3b2I= + b3RzeW9nd2xueGFibWpoeHFydWNhYWp4cWxxc3JuYWx1bXNnYmp2ZHV2bG8= + aGdsY3d0bG50bmNuaGxyZGprdWh1bHloYXRqd2llZWFoam12YXB3ZXdwZHJhd3FjaWdqeXlpc2I= + cnNudGF0cmxjb29jeWRhZGFmcndlc21rZ3BkZ3FzdGRwdXFydWxsZ2RyZnZ5a2pqaXBydXV1aXRsdGZzaWZwZXNxY3Z5cXNs + eXZibXZsamtrZHJhc2VpeXRneWhmcHBlYnlpaQ== + YmtnaWp3ZXRneWlyaWlmYnN1dnRpY3BwZGFyZnZ2cGJkcm1udm5oZ25oeHdtaHZidXZqc29laW9xbHE= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-base64Binary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-base64Binary-enumeration-5, + which is derived by restriction of built-in type base64Binary + by facet enumeration with values of: + bG9saWNlcmZna2x4c2hjdWtwY25vaWlvZg== + eHZ2dG5scHNxamhidmJxZ3dmYndkZ3BsZHZobmVmZ3Ro + ZXFrcWtka3l0b2Jxa2d3c2VtcGlya3VmaHR1cXlhc2R1ZmV5ZWJl + bmJobGdjdWVz + cm51dmhwZWpucXl3YnhmZGZjcXFqa2Q= + d2Jta2JqY2h0b2pyYnRjaWJrb3l2a3B1ZGlqYXFqY29kZHloeG1wdmx1bXhrZ3J0eWlsYmhmYnNpcm1mbXVkbmtheA== + YmptdWdmZG9kbWJxc2dndnZjcnVoZnRjb3ZidXhoa2h2ZndvZWR4bGZoYnhta3N3b2I= + b3RzeW9nd2xueGFibWpoeHFydWNhYWp4cWxxc3JuYWx1bXNnYmp2ZHV2bG8= + aGdsY3d0bG50bmNuaGxyZGprdWh1bHloYXRqd2llZWFoam12YXB3ZXdwZHJhd3FjaWdqeXlpc2I= + cnNudGF0cmxjb29jeWRhZGFmcndlc21rZ3BkZ3FzdGRwdXFydWxsZ2RyZnZ5a2pqaXBydXV1aXRsdGZzaWZwZXNxY3Z5cXNs + eXZibXZsamtrZHJhc2VpeXRneWhmcHBlYnlpaQ== + YmtnaWp3ZXRneWlyaWlmYnN1dnRpY3BwZGFyZnZ2cGJkcm1udm5oZ25oeHdtaHZidXZqc29laW9xbHE= + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-base64Binary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-whiteSpace-1, + which is derived by restriction of built-in type base64Binary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-base64Binary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-whiteSpace-1, + which is derived by restriction of built-in type base64Binary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-base64Binary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-whiteSpace-1, + which is derived by restriction of built-in type base64Binary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-base64Binary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-whiteSpace-1, + which is derived by restriction of built-in type base64Binary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-base64Binary-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-base64Binary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-base64Binary-whiteSpace-1, + which is derived by restriction of built-in type base64Binary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-base64Binary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-base64Binary-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-pattern-1-1" origin="NIST"><description> + File: NISTSchema-boolean-pattern-1.xsd + This schema specifies a datatype, NISTSchema-boolean-pattern-1, + which is derived by restriction of built-in type boolean + by facet pattern with a value of: [1]{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-pattern-2-1" origin="NIST"><description> + File: NISTSchema-boolean-pattern-2.xsd + This schema specifies a datatype, NISTSchema-boolean-pattern-2, + which is derived by restriction of built-in type boolean + by facet pattern with a value of: true + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-pattern-3-1" origin="NIST"><description> + File: NISTSchema-boolean-pattern-3.xsd + This schema specifies a datatype, NISTSchema-boolean-pattern-3, + which is derived by restriction of built-in type boolean + by facet pattern with a value of: [0]{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-pattern-4-1" origin="NIST"><description> + File: NISTSchema-boolean-pattern-4.xsd + This schema specifies a datatype, NISTSchema-boolean-pattern-4, + which is derived by restriction of built-in type boolean + by facet pattern with a value of: false + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-boolean-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-boolean-whiteSpace-1, + which is derived by restriction of built-in type boolean + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-boolean-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-boolean-whiteSpace-1, + which is derived by restriction of built-in type boolean + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-boolean-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-boolean-whiteSpace-1, + which is derived by restriction of built-in type boolean + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-boolean-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-boolean-whiteSpace-1, + which is derived by restriction of built-in type boolean + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-boolean-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-boolean-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-boolean-whiteSpace-1, + which is derived by restriction of built-in type boolean + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-boolean-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-boolean-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-1, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-1, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-1, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-1, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-1, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-2, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 125 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-2, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 125 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-2, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 125 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-2, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 125 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-2, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 125 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-3, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-3, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-3, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-3, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-3, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-4, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 51 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-4, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 51 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-4, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 51 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-4, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 51 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-4, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 51 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-byte-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-minExclusive-5, + which is derived by restriction of built-in type byte + by facet minExclusive with a value of: 126 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-1, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-1, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-1, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-1, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-1, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-2, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-2, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-2, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-2, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-2, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: -44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-3, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 124 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-3, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 124 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-3, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 124 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-3, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 124 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-3, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 124 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-4, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-4, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-4, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-4, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-4, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-byte-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-minInclusive-5, + which is derived by restriction of built-in type byte + by facet minInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-1, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-2, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 75 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-2, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 75 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-2, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 75 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-2, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 75 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-2, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 75 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-3, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -120 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-3, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -120 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-3, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -120 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-3, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -120 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-3, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: -120 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-4, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-4, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-4, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-4, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-4, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-5, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-5, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-5, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-5, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-byte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxExclusive-5, + which is derived by restriction of built-in type byte + by facet maxExclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-1, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-2, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-2, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-2, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-2, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-2, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-3, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 118 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-3, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 118 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-3, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 118 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-3, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 118 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-3, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 118 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-4, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-4, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-4, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-4, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-4, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-5, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-5, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-5, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-5, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-byte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-byte-maxInclusive-5, + which is derived by restriction of built-in type byte + by facet maxInclusive with a value of: 127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-byte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-fractionDigits-1, + which is derived by restriction of built-in type byte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-byte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-fractionDigits-1, + which is derived by restriction of built-in type byte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-byte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-fractionDigits-1, + which is derived by restriction of built-in type byte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-byte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-fractionDigits-1, + which is derived by restriction of built-in type byte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-byte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-fractionDigits-1, + which is derived by restriction of built-in type byte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-1, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-1, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-1, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-1, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-1, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-2, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-2, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-2, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-2, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-2, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-3, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-3, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-3, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-3, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-byte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-byte-totalDigits-3, + which is derived by restriction of built-in type byte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-1-1" origin="NIST"><description> + File: NISTSchema-byte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-1, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-1-2" origin="NIST"><description> + File: NISTSchema-byte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-1, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-1-3" origin="NIST"><description> + File: NISTSchema-byte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-1, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-1-4" origin="NIST"><description> + File: NISTSchema-byte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-1, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-1-5" origin="NIST"><description> + File: NISTSchema-byte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-1, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-2-1" origin="NIST"><description> + File: NISTSchema-byte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-2, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-2-2" origin="NIST"><description> + File: NISTSchema-byte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-2, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-2-3" origin="NIST"><description> + File: NISTSchema-byte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-2, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-2-4" origin="NIST"><description> + File: NISTSchema-byte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-2, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-2-5" origin="NIST"><description> + File: NISTSchema-byte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-2, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-3-1" origin="NIST"><description> + File: NISTSchema-byte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-3, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-3-2" origin="NIST"><description> + File: NISTSchema-byte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-3, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-3-3" origin="NIST"><description> + File: NISTSchema-byte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-3, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-3-4" origin="NIST"><description> + File: NISTSchema-byte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-3, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-3-5" origin="NIST"><description> + File: NISTSchema-byte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-3, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-4-1" origin="NIST"><description> + File: NISTSchema-byte-pattern-4.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-4, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-4-2" origin="NIST"><description> + File: NISTSchema-byte-pattern-4.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-4, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-4-3" origin="NIST"><description> + File: NISTSchema-byte-pattern-4.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-4, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-4-4" origin="NIST"><description> + File: NISTSchema-byte-pattern-4.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-4, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-4-5" origin="NIST"><description> + File: NISTSchema-byte-pattern-4.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-4, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-5-1" origin="NIST"><description> + File: NISTSchema-byte-pattern-5.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-5, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-5-2" origin="NIST"><description> + File: NISTSchema-byte-pattern-5.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-5, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-5-3" origin="NIST"><description> + File: NISTSchema-byte-pattern-5.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-5, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-5-4" origin="NIST"><description> + File: NISTSchema-byte-pattern-5.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-5, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-pattern-5-5" origin="NIST"><description> + File: NISTSchema-byte-pattern-5.xsd + This schema specifies a datatype, NISTSchema-byte-pattern-5, + which is derived by restriction of built-in type byte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-byte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-1, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 86 + -128 + 4 + 127 + -8 + -33 + -7 + 86 + 7 + 7 + -7 + -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-byte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-1, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 86 + -128 + 4 + 127 + -8 + -33 + -7 + 86 + 7 + 7 + -7 + -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-byte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-1, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 86 + -128 + 4 + 127 + -8 + -33 + -7 + 86 + 7 + 7 + -7 + -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-byte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-1, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 86 + -128 + 4 + 127 + -8 + -33 + -7 + 86 + 7 + 7 + -7 + -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-byte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-1, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 86 + -128 + 4 + 127 + -8 + -33 + -7 + 86 + 7 + 7 + -7 + -19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-byte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-2, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -50 + 127 + -7 + -82 + -25 + 127 + -90 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-byte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-2, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -50 + 127 + -7 + -82 + -25 + 127 + -90 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-byte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-2, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -50 + 127 + -7 + -82 + -25 + 127 + -90 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-byte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-2, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -50 + 127 + -7 + -82 + -25 + 127 + -90 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-byte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-2, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -50 + 127 + -7 + -82 + -25 + 127 + -90 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-byte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-3, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 30 + -6 + -53 + -79 + -128 + -41 + -4 + 8 + -2 + -33 + -80 + 3 + -6 + -92 + 25 + -7 + 61 + -97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-byte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-3, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 30 + -6 + -53 + -79 + -128 + -41 + -4 + 8 + -2 + -33 + -80 + 3 + -6 + -92 + 25 + -7 + 61 + -97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-byte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-3, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 30 + -6 + -53 + -79 + -128 + -41 + -4 + 8 + -2 + -33 + -80 + 3 + -6 + -92 + 25 + -7 + 61 + -97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-byte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-3, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 30 + -6 + -53 + -79 + -128 + -41 + -4 + 8 + -2 + -33 + -80 + 3 + -6 + -92 + 25 + -7 + 61 + -97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-byte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-3, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + 30 + -6 + -53 + -79 + -128 + -41 + -4 + 8 + -2 + -33 + -80 + 3 + -6 + -92 + 25 + -7 + 61 + -97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-byte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-4, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -128 + -5 + -5 + -24 + 66 + 79 + 99 + 127 + -50 + 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-byte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-4, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -128 + -5 + -5 + -24 + 66 + 79 + 99 + 127 + -50 + 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-byte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-4, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -128 + -5 + -5 + -24 + 66 + 79 + 99 + 127 + -50 + 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-byte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-4, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -128 + -5 + -5 + -24 + 66 + 79 + 99 + 127 + -50 + 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-byte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-4, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -128 + -5 + -5 + -24 + 66 + 79 + 99 + 127 + -50 + 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-byte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-5, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -6 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-byte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-5, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -6 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-byte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-5, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -6 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-byte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-5, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -6 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-byte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-byte-enumeration-5, + which is derived by restriction of built-in type byte + by facet enumeration with values of: + -6 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-byte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-byte-whiteSpace-1, + which is derived by restriction of built-in type byte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-byte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-byte-whiteSpace-1, + which is derived by restriction of built-in type byte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-byte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-byte-whiteSpace-1, + which is derived by restriction of built-in type byte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-byte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-byte-whiteSpace-1, + which is derived by restriction of built-in type byte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-byte-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-byte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-byte-whiteSpace-1, + which is derived by restriction of built-in type byte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-byte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-byte-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-1, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-1, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-1, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-1, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-1, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-2, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1971-09-27T23:06:45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-2, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1971-09-27T23:06:45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-2, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1971-09-27T23:06:45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-2, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1971-09-27T23:06:45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-2, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1971-09-27T23:06:45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-3, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1980-07-05T14:30:54 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-3, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1980-07-05T14:30:54 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-3, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1980-07-05T14:30:54 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-3, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1980-07-05T14:30:54 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-3, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 1980-07-05T14:30:54 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-4, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2020-07-19T10:30:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-4, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2020-07-19T10:30:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-4, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2020-07-19T10:30:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-4, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2020-07-19T10:30:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-4, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2020-07-19T10:30:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-minExclusive-5, + which is derived by restriction of built-in type dateTime + by facet minExclusive with a value of: 2030-12-31T23:59:58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-1, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-1, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-1, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-1, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-1, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-2, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1996-06-22T16:24:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-2, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1996-06-22T16:24:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-2, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1996-06-22T16:24:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-2, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1996-06-22T16:24:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-2, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1996-06-22T16:24:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-3, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1989-01-30T17:20:40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-3, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1989-01-30T17:20:40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-3, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1989-01-30T17:20:40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-3, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1989-01-30T17:20:40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-3, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1989-01-30T17:20:40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-4, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1991-02-28T17:38:33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-4, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1991-02-28T17:38:33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-4, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1991-02-28T17:38:33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-4, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1991-02-28T17:38:33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-4, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 1991-02-28T17:38:33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-minInclusive-5, + which is derived by restriction of built-in type dateTime + by facet minInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-1, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 1970-01-01T00:00:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2009-10-12T13:27:14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2009-10-12T13:27:14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2009-10-12T13:27:14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2009-10-12T13:27:14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2009-10-12T13:27:14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2002-10-27T17:08:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2002-10-27T17:08:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2002-10-27T17:08:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2002-10-27T17:08:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2002-10-27T17:08:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2019-06-06T23:43:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2019-06-06T23:43:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2019-06-06T23:43:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2019-06-06T23:43:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2019-06-06T23:43:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxExclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxExclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-1, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1970-01-01T00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1996-07-20T01:45:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1996-07-20T01:45:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1996-07-20T01:45:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1996-07-20T01:45:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-2, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1996-07-20T01:45:50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1973-09-26T07:51:16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1973-09-26T07:51:16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1973-09-26T07:51:16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1973-09-26T07:51:16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-3, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1973-09-26T07:51:16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1988-11-21T10:24:27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1988-11-21T10:24:27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1988-11-21T10:24:27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1988-11-21T10:24:27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-4, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 1988-11-21T10:24:27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-dateTime-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-maxInclusive-5, + which is derived by restriction of built-in type dateTime + by facet maxInclusive with a value of: 2030-12-31T23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-1, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: \d\d\d\d-\d\d-23T\d\d:42:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-1-2" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-1, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: \d\d\d\d-\d\d-23T\d\d:42:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-1-3" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-1, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: \d\d\d\d-\d\d-23T\d\d:42:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-1-4" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-1, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: \d\d\d\d-\d\d-23T\d\d:42:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-1-5" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-1, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: \d\d\d\d-\d\d-23T\d\d:42:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-2, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1988-\d\d-02T\d\d:46:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-2, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1988-\d\d-02T\d\d:46:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-2, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1988-\d\d-02T\d\d:46:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-2, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1988-\d\d-02T\d\d:46:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-2, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1988-\d\d-02T\d\d:46:49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-3, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 2019-05-\d\dT\d\d:\d\d:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-3, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 2019-05-\d\dT\d\d:\d\d:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-3, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 2019-05-\d\dT\d\d:\d\d:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-3, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 2019-05-\d\dT\d\d:\d\d:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-3, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 2019-05-\d\dT\d\d:\d\d:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-4, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1981-\d\d-\d\dT05:\d\d:28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-4, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1981-\d\d-\d\dT05:\d\d:28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-4, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1981-\d\d-\d\dT05:\d\d:28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-4, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1981-\d\d-\d\dT05:\d\d:28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-4, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1981-\d\d-\d\dT05:\d\d:28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-5, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1989-05-23T\d\d:02:21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-5-2" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-5, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1989-05-23T\d\d:02:21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-5-3" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-5, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1989-05-23T\d\d:02:21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-5-4" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-5, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1989-05-23T\d\d:02:21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-pattern-5-5" origin="NIST"><description> + File: NISTSchema-dateTime-pattern-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-pattern-5, + which is derived by restriction of built-in type dateTime + by facet pattern with a value of: 1989-05-23T\d\d:02:21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-1, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2006-06-12T08:58:40 + 1989-05-07T12:30:57 + 1974-05-27T15:27:51 + 2021-11-29T04:14:54 + 1998-03-22T15:59:29 + 1979-03-25T12:57:00 + 1991-06-23T00:32:56 + 1982-09-10T23:02:09 + 2004-10-31T20:54:31 + 1985-11-09T11:27:55 + 1981-09-06T04:36:47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-1, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2006-06-12T08:58:40 + 1989-05-07T12:30:57 + 1974-05-27T15:27:51 + 2021-11-29T04:14:54 + 1998-03-22T15:59:29 + 1979-03-25T12:57:00 + 1991-06-23T00:32:56 + 1982-09-10T23:02:09 + 2004-10-31T20:54:31 + 1985-11-09T11:27:55 + 1981-09-06T04:36:47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-1, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2006-06-12T08:58:40 + 1989-05-07T12:30:57 + 1974-05-27T15:27:51 + 2021-11-29T04:14:54 + 1998-03-22T15:59:29 + 1979-03-25T12:57:00 + 1991-06-23T00:32:56 + 1982-09-10T23:02:09 + 2004-10-31T20:54:31 + 1985-11-09T11:27:55 + 1981-09-06T04:36:47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-1, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2006-06-12T08:58:40 + 1989-05-07T12:30:57 + 1974-05-27T15:27:51 + 2021-11-29T04:14:54 + 1998-03-22T15:59:29 + 1979-03-25T12:57:00 + 1991-06-23T00:32:56 + 1982-09-10T23:02:09 + 2004-10-31T20:54:31 + 1985-11-09T11:27:55 + 1981-09-06T04:36:47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-1, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2006-06-12T08:58:40 + 1989-05-07T12:30:57 + 1974-05-27T15:27:51 + 2021-11-29T04:14:54 + 1998-03-22T15:59:29 + 1979-03-25T12:57:00 + 1991-06-23T00:32:56 + 1982-09-10T23:02:09 + 2004-10-31T20:54:31 + 1985-11-09T11:27:55 + 1981-09-06T04:36:47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-2, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2029-08-09T05:30:34 + 1978-03-15T13:15:14 + 1995-02-22T00:34:00 + 1981-10-23T23:11:21 + 2029-01-03T16:20:13 + 1978-01-22T12:26:41 + 1971-09-11T08:14:10 + 2016-11-20T06:44:17 + 2023-10-18T08:48:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-2, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2029-08-09T05:30:34 + 1978-03-15T13:15:14 + 1995-02-22T00:34:00 + 1981-10-23T23:11:21 + 2029-01-03T16:20:13 + 1978-01-22T12:26:41 + 1971-09-11T08:14:10 + 2016-11-20T06:44:17 + 2023-10-18T08:48:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-2, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2029-08-09T05:30:34 + 1978-03-15T13:15:14 + 1995-02-22T00:34:00 + 1981-10-23T23:11:21 + 2029-01-03T16:20:13 + 1978-01-22T12:26:41 + 1971-09-11T08:14:10 + 2016-11-20T06:44:17 + 2023-10-18T08:48:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-2, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2029-08-09T05:30:34 + 1978-03-15T13:15:14 + 1995-02-22T00:34:00 + 1981-10-23T23:11:21 + 2029-01-03T16:20:13 + 1978-01-22T12:26:41 + 1971-09-11T08:14:10 + 2016-11-20T06:44:17 + 2023-10-18T08:48:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-2, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2029-08-09T05:30:34 + 1978-03-15T13:15:14 + 1995-02-22T00:34:00 + 1981-10-23T23:11:21 + 2029-01-03T16:20:13 + 1978-01-22T12:26:41 + 1971-09-11T08:14:10 + 2016-11-20T06:44:17 + 2023-10-18T08:48:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-3, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2026-07-27T07:40:38 + 2028-02-15T11:29:22 + 1980-11-20T22:51:25 + 1998-05-22T23:42:45 + 2015-03-15T19:30:35 + 1971-06-09T09:35:14 + 2027-10-29T20:52:43 + 2024-11-21T07:41:24 + 2013-06-10T02:36:30 + 2030-08-24T03:27:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-3, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2026-07-27T07:40:38 + 2028-02-15T11:29:22 + 1980-11-20T22:51:25 + 1998-05-22T23:42:45 + 2015-03-15T19:30:35 + 1971-06-09T09:35:14 + 2027-10-29T20:52:43 + 2024-11-21T07:41:24 + 2013-06-10T02:36:30 + 2030-08-24T03:27:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-3, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2026-07-27T07:40:38 + 2028-02-15T11:29:22 + 1980-11-20T22:51:25 + 1998-05-22T23:42:45 + 2015-03-15T19:30:35 + 1971-06-09T09:35:14 + 2027-10-29T20:52:43 + 2024-11-21T07:41:24 + 2013-06-10T02:36:30 + 2030-08-24T03:27:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-3, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2026-07-27T07:40:38 + 2028-02-15T11:29:22 + 1980-11-20T22:51:25 + 1998-05-22T23:42:45 + 2015-03-15T19:30:35 + 1971-06-09T09:35:14 + 2027-10-29T20:52:43 + 2024-11-21T07:41:24 + 2013-06-10T02:36:30 + 2030-08-24T03:27:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-3, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 2026-07-27T07:40:38 + 2028-02-15T11:29:22 + 1980-11-20T22:51:25 + 1998-05-22T23:42:45 + 2015-03-15T19:30:35 + 1971-06-09T09:35:14 + 2027-10-29T20:52:43 + 2024-11-21T07:41:24 + 2013-06-10T02:36:30 + 2030-08-24T03:27:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-4, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1980-03-26T06:07:06 + 2027-03-04T12:31:43 + 1990-10-20T08:40:36 + 2023-12-03T08:33:31 + 1992-12-09T16:24:39 + 2017-05-17T14:52:42 + 2005-03-06T07:51:19 + 1978-12-19T19:10:08 + 2010-02-21T08:36:26 + 2005-10-31T08:56:24 + 1977-06-08T10:58:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-4, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1980-03-26T06:07:06 + 2027-03-04T12:31:43 + 1990-10-20T08:40:36 + 2023-12-03T08:33:31 + 1992-12-09T16:24:39 + 2017-05-17T14:52:42 + 2005-03-06T07:51:19 + 1978-12-19T19:10:08 + 2010-02-21T08:36:26 + 2005-10-31T08:56:24 + 1977-06-08T10:58:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-4, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1980-03-26T06:07:06 + 2027-03-04T12:31:43 + 1990-10-20T08:40:36 + 2023-12-03T08:33:31 + 1992-12-09T16:24:39 + 2017-05-17T14:52:42 + 2005-03-06T07:51:19 + 1978-12-19T19:10:08 + 2010-02-21T08:36:26 + 2005-10-31T08:56:24 + 1977-06-08T10:58:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-4, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1980-03-26T06:07:06 + 2027-03-04T12:31:43 + 1990-10-20T08:40:36 + 2023-12-03T08:33:31 + 1992-12-09T16:24:39 + 2017-05-17T14:52:42 + 2005-03-06T07:51:19 + 1978-12-19T19:10:08 + 2010-02-21T08:36:26 + 2005-10-31T08:56:24 + 1977-06-08T10:58:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-4, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1980-03-26T06:07:06 + 2027-03-04T12:31:43 + 1990-10-20T08:40:36 + 2023-12-03T08:33:31 + 1992-12-09T16:24:39 + 2017-05-17T14:52:42 + 2005-03-06T07:51:19 + 1978-12-19T19:10:08 + 2010-02-21T08:36:26 + 2005-10-31T08:56:24 + 1977-06-08T10:58:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-5, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1996-01-20T18:50:48 + 1981-04-23T07:28:57 + 1981-06-26T17:26:57 + 1976-02-05T19:59:34 + 2020-05-17T22:09:14 + 2006-11-09T20:03:54 + 2019-02-18T14:08:26 + 1973-09-25T17:59:21 + 1997-12-21T06:46:56 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-5, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1996-01-20T18:50:48 + 1981-04-23T07:28:57 + 1981-06-26T17:26:57 + 1976-02-05T19:59:34 + 2020-05-17T22:09:14 + 2006-11-09T20:03:54 + 2019-02-18T14:08:26 + 1973-09-25T17:59:21 + 1997-12-21T06:46:56 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-5, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1996-01-20T18:50:48 + 1981-04-23T07:28:57 + 1981-06-26T17:26:57 + 1976-02-05T19:59:34 + 2020-05-17T22:09:14 + 2006-11-09T20:03:54 + 2019-02-18T14:08:26 + 1973-09-25T17:59:21 + 1997-12-21T06:46:56 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-5, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1996-01-20T18:50:48 + 1981-04-23T07:28:57 + 1981-06-26T17:26:57 + 1976-02-05T19:59:34 + 2020-05-17T22:09:14 + 2006-11-09T20:03:54 + 2019-02-18T14:08:26 + 1973-09-25T17:59:21 + 1997-12-21T06:46:56 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-dateTime-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-dateTime-enumeration-5, + which is derived by restriction of built-in type dateTime + by facet enumeration with values of: + 1996-01-20T18:50:48 + 1981-04-23T07:28:57 + 1981-06-26T17:26:57 + 1976-02-05T19:59:34 + 2020-05-17T22:09:14 + 2006-11-09T20:03:54 + 2019-02-18T14:08:26 + 1973-09-25T17:59:21 + 1997-12-21T06:46:56 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-dateTime-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-whiteSpace-1, + which is derived by restriction of built-in type dateTime + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-dateTime-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-whiteSpace-1, + which is derived by restriction of built-in type dateTime + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-dateTime-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-whiteSpace-1, + which is derived by restriction of built-in type dateTime + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-dateTime-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-whiteSpace-1, + which is derived by restriction of built-in type dateTime + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-dateTime-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-dateTime-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-dateTime-whiteSpace-1, + which is derived by restriction of built-in type dateTime + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-dateTime-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-dateTime-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-date-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-1, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-date-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-1, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-date-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-1, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-date-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-1, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-date-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-1, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-date-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-2, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1979-11-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-date-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-2, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1979-11-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-date-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-2, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1979-11-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-date-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-2, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1979-11-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-date-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-2, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1979-11-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-date-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-3, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2026-02-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-date-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-3, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2026-02-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-date-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-3, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2026-02-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-date-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-3, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2026-02-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-date-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-3, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2026-02-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-date-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-4, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-03-19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-date-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-4, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-03-19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-date-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-4, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-03-19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-date-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-4, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-03-19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-date-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-4, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 1970-03-19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-date-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-minExclusive-5, + which is derived by restriction of built-in type date + by facet minExclusive with a value of: 2030-12-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-date-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-1, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-date-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-1, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-date-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-1, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-date-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-1, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-date-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-1, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-date-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-2, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-03-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-date-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-2, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-03-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-date-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-2, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-03-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-date-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-2, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-03-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-date-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-2, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1970-03-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-date-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-3, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1977-04-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-date-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-3, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1977-04-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-date-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-3, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1977-04-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-date-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-3, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1977-04-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-date-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-3, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1977-04-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-date-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-4, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1997-02-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-date-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-4, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1997-02-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-date-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-4, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1997-02-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-date-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-4, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1997-02-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-date-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-4, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 1997-02-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-date-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-minInclusive-5, + which is derived by restriction of built-in type date + by facet minInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-1, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1970-01-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-2, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-11-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-2, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-11-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-2, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-11-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-2, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-11-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-2, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-11-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-3, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-06-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-3, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-06-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-3, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-06-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-3, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-06-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-3, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1999-06-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-4, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1971-08-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-4, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1971-08-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-4, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1971-08-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-4, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1971-08-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-4, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 1971-08-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-5, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-5, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-5, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-5, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-date-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxExclusive-5, + which is derived by restriction of built-in type date + by facet maxExclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-1, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1970-01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-2, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1999-05-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-2, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1999-05-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-2, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1999-05-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-2, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1999-05-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-2, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1999-05-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-3, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1990-12-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-3, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1990-12-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-3, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1990-12-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-3, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1990-12-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-3, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1990-12-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-4, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1972-01-16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-4, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1972-01-16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-4, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1972-01-16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-4, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1972-01-16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-4, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 1972-01-16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-5, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-5, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-5, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-5, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-date-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-date-maxInclusive-5, + which is derived by restriction of built-in type date + by facet maxInclusive with a value of: 2030-12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-1-1" origin="NIST"><description> + File: NISTSchema-date-pattern-1.xsd + This schema specifies a datatype, NISTSchema-date-pattern-1, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-10-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-1-2" origin="NIST"><description> + File: NISTSchema-date-pattern-1.xsd + This schema specifies a datatype, NISTSchema-date-pattern-1, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-10-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-1-3" origin="NIST"><description> + File: NISTSchema-date-pattern-1.xsd + This schema specifies a datatype, NISTSchema-date-pattern-1, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-10-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-1-4" origin="NIST"><description> + File: NISTSchema-date-pattern-1.xsd + This schema specifies a datatype, NISTSchema-date-pattern-1, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-10-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-1-5" origin="NIST"><description> + File: NISTSchema-date-pattern-1.xsd + This schema specifies a datatype, NISTSchema-date-pattern-1, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-10-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-2-1" origin="NIST"><description> + File: NISTSchema-date-pattern-2.xsd + This schema specifies a datatype, NISTSchema-date-pattern-2, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-2-2" origin="NIST"><description> + File: NISTSchema-date-pattern-2.xsd + This schema specifies a datatype, NISTSchema-date-pattern-2, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-2-3" origin="NIST"><description> + File: NISTSchema-date-pattern-2.xsd + This schema specifies a datatype, NISTSchema-date-pattern-2, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-2-4" origin="NIST"><description> + File: NISTSchema-date-pattern-2.xsd + This schema specifies a datatype, NISTSchema-date-pattern-2, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-2-5" origin="NIST"><description> + File: NISTSchema-date-pattern-2.xsd + This schema specifies a datatype, NISTSchema-date-pattern-2, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-18 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-3-1" origin="NIST"><description> + File: NISTSchema-date-pattern-3.xsd + This schema specifies a datatype, NISTSchema-date-pattern-3, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-3-2" origin="NIST"><description> + File: NISTSchema-date-pattern-3.xsd + This schema specifies a datatype, NISTSchema-date-pattern-3, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-3-3" origin="NIST"><description> + File: NISTSchema-date-pattern-3.xsd + This schema specifies a datatype, NISTSchema-date-pattern-3, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-3-4" origin="NIST"><description> + File: NISTSchema-date-pattern-3.xsd + This schema specifies a datatype, NISTSchema-date-pattern-3, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-3-5" origin="NIST"><description> + File: NISTSchema-date-pattern-3.xsd + This schema specifies a datatype, NISTSchema-date-pattern-3, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-4-1" origin="NIST"><description> + File: NISTSchema-date-pattern-4.xsd + This schema specifies a datatype, NISTSchema-date-pattern-4, + which is derived by restriction of built-in type date + by facet pattern with a value of: 1984-04-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-4-2" origin="NIST"><description> + File: NISTSchema-date-pattern-4.xsd + This schema specifies a datatype, NISTSchema-date-pattern-4, + which is derived by restriction of built-in type date + by facet pattern with a value of: 1984-04-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-4-3" origin="NIST"><description> + File: NISTSchema-date-pattern-4.xsd + This schema specifies a datatype, NISTSchema-date-pattern-4, + which is derived by restriction of built-in type date + by facet pattern with a value of: 1984-04-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-4-4" origin="NIST"><description> + File: NISTSchema-date-pattern-4.xsd + This schema specifies a datatype, NISTSchema-date-pattern-4, + which is derived by restriction of built-in type date + by facet pattern with a value of: 1984-04-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-4-5" origin="NIST"><description> + File: NISTSchema-date-pattern-4.xsd + This schema specifies a datatype, NISTSchema-date-pattern-4, + which is derived by restriction of built-in type date + by facet pattern with a value of: 1984-04-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-5-1" origin="NIST"><description> + File: NISTSchema-date-pattern-5.xsd + This schema specifies a datatype, NISTSchema-date-pattern-5, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-5-2" origin="NIST"><description> + File: NISTSchema-date-pattern-5.xsd + This schema specifies a datatype, NISTSchema-date-pattern-5, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-5-3" origin="NIST"><description> + File: NISTSchema-date-pattern-5.xsd + This schema specifies a datatype, NISTSchema-date-pattern-5, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-5-4" origin="NIST"><description> + File: NISTSchema-date-pattern-5.xsd + This schema specifies a datatype, NISTSchema-date-pattern-5, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-pattern-5-5" origin="NIST"><description> + File: NISTSchema-date-pattern-5.xsd + This schema specifies a datatype, NISTSchema-date-pattern-5, + which is derived by restriction of built-in type date + by facet pattern with a value of: \d\d\d\d-\d\d-26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-date-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-1, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-12-01 + 1996-03-29 + 1979-07-01 + 2005-02-08 + 2023-06-30 + 2020-01-18 + 2026-02-25 + 1990-09-09 + 2023-07-13 + 2018-11-02 + 2021-01-12 + 1991-10-29 + 2000-07-26 + 1988-06-03 + 1981-02-18 + 1997-07-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-date-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-1, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-12-01 + 1996-03-29 + 1979-07-01 + 2005-02-08 + 2023-06-30 + 2020-01-18 + 2026-02-25 + 1990-09-09 + 2023-07-13 + 2018-11-02 + 2021-01-12 + 1991-10-29 + 2000-07-26 + 1988-06-03 + 1981-02-18 + 1997-07-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-date-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-1, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-12-01 + 1996-03-29 + 1979-07-01 + 2005-02-08 + 2023-06-30 + 2020-01-18 + 2026-02-25 + 1990-09-09 + 2023-07-13 + 2018-11-02 + 2021-01-12 + 1991-10-29 + 2000-07-26 + 1988-06-03 + 1981-02-18 + 1997-07-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-date-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-1, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-12-01 + 1996-03-29 + 1979-07-01 + 2005-02-08 + 2023-06-30 + 2020-01-18 + 2026-02-25 + 1990-09-09 + 2023-07-13 + 2018-11-02 + 2021-01-12 + 1991-10-29 + 2000-07-26 + 1988-06-03 + 1981-02-18 + 1997-07-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-date-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-1, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-12-01 + 1996-03-29 + 1979-07-01 + 2005-02-08 + 2023-06-30 + 2020-01-18 + 2026-02-25 + 1990-09-09 + 2023-07-13 + 2018-11-02 + 2021-01-12 + 1991-10-29 + 2000-07-26 + 1988-06-03 + 1981-02-18 + 1997-07-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-date-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-2, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2018-12-01 + 1996-05-11 + 2023-06-06 + 1991-04-27 + 1971-10-02 + 2019-06-07 + 2012-09-12 + 1991-04-21 + 2001-11-16 + 1990-01-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-date-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-2, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2018-12-01 + 1996-05-11 + 2023-06-06 + 1991-04-27 + 1971-10-02 + 2019-06-07 + 2012-09-12 + 1991-04-21 + 2001-11-16 + 1990-01-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-date-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-2, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2018-12-01 + 1996-05-11 + 2023-06-06 + 1991-04-27 + 1971-10-02 + 2019-06-07 + 2012-09-12 + 1991-04-21 + 2001-11-16 + 1990-01-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-date-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-2, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2018-12-01 + 1996-05-11 + 2023-06-06 + 1991-04-27 + 1971-10-02 + 2019-06-07 + 2012-09-12 + 1991-04-21 + 2001-11-16 + 1990-01-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-date-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-2, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2018-12-01 + 1996-05-11 + 2023-06-06 + 1991-04-27 + 1971-10-02 + 2019-06-07 + 2012-09-12 + 1991-04-21 + 2001-11-16 + 1990-01-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-date-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-3, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2027-04-29 + 2005-11-17 + 2027-09-22 + 2024-11-01 + 1992-04-17 + 2011-04-22 + 1971-03-01 + 2012-09-05 + 2030-01-11 + 2009-10-09 + 2022-04-17 + 1986-05-31 + 1987-11-20 + 2012-08-22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-date-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-3, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2027-04-29 + 2005-11-17 + 2027-09-22 + 2024-11-01 + 1992-04-17 + 2011-04-22 + 1971-03-01 + 2012-09-05 + 2030-01-11 + 2009-10-09 + 2022-04-17 + 1986-05-31 + 1987-11-20 + 2012-08-22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-date-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-3, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2027-04-29 + 2005-11-17 + 2027-09-22 + 2024-11-01 + 1992-04-17 + 2011-04-22 + 1971-03-01 + 2012-09-05 + 2030-01-11 + 2009-10-09 + 2022-04-17 + 1986-05-31 + 1987-11-20 + 2012-08-22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-date-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-3, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2027-04-29 + 2005-11-17 + 2027-09-22 + 2024-11-01 + 1992-04-17 + 2011-04-22 + 1971-03-01 + 2012-09-05 + 2030-01-11 + 2009-10-09 + 2022-04-17 + 1986-05-31 + 1987-11-20 + 2012-08-22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-date-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-3, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2027-04-29 + 2005-11-17 + 2027-09-22 + 2024-11-01 + 1992-04-17 + 2011-04-22 + 1971-03-01 + 2012-09-05 + 2030-01-11 + 2009-10-09 + 2022-04-17 + 1986-05-31 + 1987-11-20 + 2012-08-22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-date-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-4, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2017-09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-date-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-4, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2017-09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-date-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-4, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2017-09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-date-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-4, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2017-09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-date-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-4, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2017-09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-date-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-5, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-10-20 + 1982-07-11 + 2009-02-08 + 2007-04-24 + 1997-11-29 + 2020-01-04 + 1985-08-29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-date-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-5, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-10-20 + 1982-07-11 + 2009-02-08 + 2007-04-24 + 1997-11-29 + 2020-01-04 + 1985-08-29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-date-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-5, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-10-20 + 1982-07-11 + 2009-02-08 + 2007-04-24 + 1997-11-29 + 2020-01-04 + 1985-08-29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-date-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-5, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-10-20 + 1982-07-11 + 2009-02-08 + 2007-04-24 + 1997-11-29 + 2020-01-04 + 1985-08-29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-date-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-date-enumeration-5, + which is derived by restriction of built-in type date + by facet enumeration with values of: + 2023-10-20 + 1982-07-11 + 2009-02-08 + 2007-04-24 + 1997-11-29 + 2020-01-04 + 1985-08-29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-date-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-date-whiteSpace-1, + which is derived by restriction of built-in type date + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-date-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-date-whiteSpace-1, + which is derived by restriction of built-in type date + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-date-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-date-whiteSpace-1, + which is derived by restriction of built-in type date + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-date-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-date-whiteSpace-1, + which is derived by restriction of built-in type date + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-date-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-date-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-date-whiteSpace-1, + which is derived by restriction of built-in type date + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-date-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-date-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-1, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-1, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-1, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-1, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-1, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-2, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -90315885553288199894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-2, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -90315885553288199894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-2, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -90315885553288199894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-2, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -90315885553288199894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-2, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -90315885553288199894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-3, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -76952618889338464392 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-3, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -76952618889338464392 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-3, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -76952618889338464392 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-3, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -76952618889338464392 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-3, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -76952618889338464392 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-4, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -2370987395375800944 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-4, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -2370987395375800944 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-4, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -2370987395375800944 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-4, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -2370987395375800944 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-4, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: -2370987395375800944 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-decimal-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-minExclusive-5, + which is derived by restriction of built-in type decimal + by facet minExclusive with a value of: 99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-1, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-1, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-1, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-1, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-1, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-2, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 36030147235475484812 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-2, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 36030147235475484812 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-2, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 36030147235475484812 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-2, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 36030147235475484812 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-2, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 36030147235475484812 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-3, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -29323165045079901958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-3, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -29323165045079901958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-3, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -29323165045079901958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-3, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -29323165045079901958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-3, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -29323165045079901958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-4, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -58430235775863237357 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-4, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -58430235775863237357 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-4, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -58430235775863237357 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-4, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -58430235775863237357 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-4, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: -58430235775863237357 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-decimal-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-minInclusive-5, + which is derived by restriction of built-in type decimal + by facet minInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-1, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-2, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -53611523908118030589 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-2, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -53611523908118030589 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-2, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -53611523908118030589 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-2, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -53611523908118030589 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-2, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -53611523908118030589 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-3, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -36382156176654856238 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-3, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -36382156176654856238 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-3, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -36382156176654856238 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-3, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -36382156176654856238 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-3, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -36382156176654856238 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-4, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -67238366863905874026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-4, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -67238366863905874026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-4, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -67238366863905874026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-4, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -67238366863905874026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-4, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: -67238366863905874026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-5, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-5, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-5, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-5, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-decimal-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxExclusive-5, + which is derived by restriction of built-in type decimal + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-1, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-2, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -92769398611701903156 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-2, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -92769398611701903156 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-2, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -92769398611701903156 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-2, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -92769398611701903156 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-2, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -92769398611701903156 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-3, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 32631019384144144268 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-3, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 32631019384144144268 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-3, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 32631019384144144268 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-3, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 32631019384144144268 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-3, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 32631019384144144268 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-4, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -61563139137122901978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-4, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -61563139137122901978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-4, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -61563139137122901978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-4, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -61563139137122901978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-4, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: -61563139137122901978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-5, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-5, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-5, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-5, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-decimal-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-decimal-maxInclusive-5, + which is derived by restriction of built-in type decimal + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-1, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-1, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-1, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-1, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-1, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-2-1" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-2, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-2-2" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-2, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-2-3" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-2, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-2-4" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-2, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-2-5" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-2, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-3-1" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-3, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-3-2" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-3, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-3-3" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-3, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-3-4" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-3, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-3-5" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-3, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-4-1" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-4, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-4-2" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-4, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-4-3" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-4, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-4-4" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-4, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-4-5" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-4, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-5-1" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-5, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-5-2" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-5, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-5-3" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-5, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-5-4" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-5, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-fractionDigits-5-5" origin="NIST"><description> + File: NISTSchema-decimal-fractionDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-fractionDigits-5, + which is derived by restriction of built-in type decimal + by facet fractionDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-fractionDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-fractionDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-1, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-1, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-1, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-1, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-1, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-2, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-2, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-2, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-2, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-2, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-3, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-3, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-3, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-3, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-3, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-4, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-4, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-4, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-4, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-4, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-5, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-5, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-5, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-5, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-decimal-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-decimal-totalDigits-5, + which is derived by restriction of built-in type decimal + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-1-1" origin="NIST"><description> + File: NISTSchema-decimal-pattern-1.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-1, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-1-2" origin="NIST"><description> + File: NISTSchema-decimal-pattern-1.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-1, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-1-3" origin="NIST"><description> + File: NISTSchema-decimal-pattern-1.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-1, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-1-4" origin="NIST"><description> + File: NISTSchema-decimal-pattern-1.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-1, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-1-5" origin="NIST"><description> + File: NISTSchema-decimal-pattern-1.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-1, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-2-1" origin="NIST"><description> + File: NISTSchema-decimal-pattern-2.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-2, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-2-2" origin="NIST"><description> + File: NISTSchema-decimal-pattern-2.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-2, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-2-3" origin="NIST"><description> + File: NISTSchema-decimal-pattern-2.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-2, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-2-4" origin="NIST"><description> + File: NISTSchema-decimal-pattern-2.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-2, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-2-5" origin="NIST"><description> + File: NISTSchema-decimal-pattern-2.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-2, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-3-1" origin="NIST"><description> + File: NISTSchema-decimal-pattern-3.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-3, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d{5}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-3-2" origin="NIST"><description> + File: NISTSchema-decimal-pattern-3.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-3, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d{5}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-3-3" origin="NIST"><description> + File: NISTSchema-decimal-pattern-3.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-3, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d{5}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-3-4" origin="NIST"><description> + File: NISTSchema-decimal-pattern-3.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-3, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d{5}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-3-5" origin="NIST"><description> + File: NISTSchema-decimal-pattern-3.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-3, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \d{5}\.\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-4-1" origin="NIST"><description> + File: NISTSchema-decimal-pattern-4.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-4, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{10}\.\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-4-2" origin="NIST"><description> + File: NISTSchema-decimal-pattern-4.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-4, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{10}\.\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-4-3" origin="NIST"><description> + File: NISTSchema-decimal-pattern-4.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-4, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{10}\.\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-4-4" origin="NIST"><description> + File: NISTSchema-decimal-pattern-4.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-4, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{10}\.\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-4-5" origin="NIST"><description> + File: NISTSchema-decimal-pattern-4.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-4, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{10}\.\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-5-1" origin="NIST"><description> + File: NISTSchema-decimal-pattern-5.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-5, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-5-2" origin="NIST"><description> + File: NISTSchema-decimal-pattern-5.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-5, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-5-3" origin="NIST"><description> + File: NISTSchema-decimal-pattern-5.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-5, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-5-4" origin="NIST"><description> + File: NISTSchema-decimal-pattern-5.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-5, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-pattern-5-5" origin="NIST"><description> + File: NISTSchema-decimal-pattern-5.xsd + This schema specifies a datatype, NISTSchema-decimal-pattern-5, + which is derived by restriction of built-in type decimal + by facet pattern with a value of: \-\d{1}\.\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-1, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -85.29 + -0.634 + 41.0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-1, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -85.29 + -0.634 + 41.0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-1, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -85.29 + -0.634 + 41.0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-1, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -85.29 + -0.634 + 41.0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-1, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -85.29 + -0.634 + 41.0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-2, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + 9.122 + -2130659315.8846276 + 386.29331 + -9.8855 + -0.7 + 302.08 + -918.075368 + 40125.735 + -68983615043261.4592 + -67340091139.382 + -91941599.653967898 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-2, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + 9.122 + -2130659315.8846276 + 386.29331 + -9.8855 + -0.7 + 302.08 + -918.075368 + 40125.735 + -68983615043261.4592 + -67340091139.382 + -91941599.653967898 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-2, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + 9.122 + -2130659315.8846276 + 386.29331 + -9.8855 + -0.7 + 302.08 + -918.075368 + 40125.735 + -68983615043261.4592 + -67340091139.382 + -91941599.653967898 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-2, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + 9.122 + -2130659315.8846276 + 386.29331 + -9.8855 + -0.7 + 302.08 + -918.075368 + 40125.735 + -68983615043261.4592 + -67340091139.382 + -91941599.653967898 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-2, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + 9.122 + -2130659315.8846276 + 386.29331 + -9.8855 + -0.7 + 302.08 + -918.075368 + 40125.735 + -68983615043261.4592 + -67340091139.382 + -91941599.653967898 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-3, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -8391233595237.4 + 8895831892.03 + -302444450457 + 68462365063667.1 + -7.230764041568 + 848829283710.18 + -18.7 + -25555.46385 + -7.7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-3, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -8391233595237.4 + 8895831892.03 + -302444450457 + 68462365063667.1 + -7.230764041568 + 848829283710.18 + -18.7 + -25555.46385 + -7.7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-3, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -8391233595237.4 + 8895831892.03 + -302444450457 + 68462365063667.1 + -7.230764041568 + 848829283710.18 + -18.7 + -25555.46385 + -7.7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-3, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -8391233595237.4 + 8895831892.03 + -302444450457 + 68462365063667.1 + -7.230764041568 + 848829283710.18 + -18.7 + -25555.46385 + -7.7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-3, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -8391233595237.4 + 8895831892.03 + -302444450457 + 68462365063667.1 + -7.230764041568 + 848829283710.18 + -18.7 + -25555.46385 + -7.7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-4, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -21670.3201035832 + -0.40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-4, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -21670.3201035832 + -0.40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-4, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -21670.3201035832 + -0.40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-4, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -21670.3201035832 + -0.40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-4, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -21670.3201035832 + -0.40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-5, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -4490411600530241.909 + 942779.58291197316 + -9176143.29 + 8 + 907.71 + 6021.71855321 + -161634979.780525878 + -5107.1925252189565 + -47.807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-5, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -4490411600530241.909 + 942779.58291197316 + -9176143.29 + 8 + 907.71 + 6021.71855321 + -161634979.780525878 + -5107.1925252189565 + -47.807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-5, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -4490411600530241.909 + 942779.58291197316 + -9176143.29 + 8 + 907.71 + 6021.71855321 + -161634979.780525878 + -5107.1925252189565 + -47.807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-5, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -4490411600530241.909 + 942779.58291197316 + -9176143.29 + 8 + 907.71 + 6021.71855321 + -161634979.780525878 + -5107.1925252189565 + -47.807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-decimal-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-decimal-enumeration-5, + which is derived by restriction of built-in type decimal + by facet enumeration with values of: + -4490411600530241.909 + 942779.58291197316 + -9176143.29 + 8 + 907.71 + 6021.71855321 + -161634979.780525878 + -5107.1925252189565 + -47.807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-decimal-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-decimal-whiteSpace-1, + which is derived by restriction of built-in type decimal + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-decimal-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-decimal-whiteSpace-1, + which is derived by restriction of built-in type decimal + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-decimal-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-decimal-whiteSpace-1, + which is derived by restriction of built-in type decimal + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-decimal-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-decimal-whiteSpace-1, + which is derived by restriction of built-in type decimal + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-decimal-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-decimal-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-decimal-whiteSpace-1, + which is derived by restriction of built-in type decimal + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-decimal-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-decimal-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-double-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-1, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-double-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-1, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-double-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-1, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-double-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-1, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-double-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-1, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-double-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-2, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3571796648689448E-636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-double-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-2, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3571796648689448E-636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-double-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-2, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3571796648689448E-636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-double-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-2, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3571796648689448E-636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-double-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-2, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3571796648689448E-636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-double-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-3, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 7410542889887471E-740 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-double-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-3, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 7410542889887471E-740 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-double-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-3, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 7410542889887471E-740 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-double-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-3, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 7410542889887471E-740 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-double-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-3, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 7410542889887471E-740 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-double-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-4, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3877207345453194E213 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-double-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-4, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3877207345453194E213 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-double-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-4, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3877207345453194E213 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-double-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-4, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3877207345453194E213 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-double-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-4, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 3877207345453194E213 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-double-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-minExclusive-5, + which is derived by restriction of built-in type double + by facet minExclusive with a value of: 9007199254740990.9999E969 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-double-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-1, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-double-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-1, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-double-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-1, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-double-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-1, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-double-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-1, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-double-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-2, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 6428249747647316E-588 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-double-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-2, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 6428249747647316E-588 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-double-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-2, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 6428249747647316E-588 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-double-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-2, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 6428249747647316E-588 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-double-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-2, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 6428249747647316E-588 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-double-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-3, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 7851955454166925E-517 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-double-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-3, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 7851955454166925E-517 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-double-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-3, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 7851955454166925E-517 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-double-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-3, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 7851955454166925E-517 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-double-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-3, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 7851955454166925E-517 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-double-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-4, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 2184496617705160E-251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-double-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-4, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 2184496617705160E-251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-double-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-4, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 2184496617705160E-251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-double-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-4, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 2184496617705160E-251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-double-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-4, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 2184496617705160E-251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-double-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-minInclusive-5, + which is derived by restriction of built-in type double + by facet minInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-1, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1.0000000000000000001E-1074 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-2, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1426699201180684.8415E689 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-2, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1426699201180684.8415E689 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-2, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1426699201180684.8415E689 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-2, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1426699201180684.8415E689 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-2, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1426699201180684.8415E689 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-3, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 8126416415424838.0976E576 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-3, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 8126416415424838.0976E576 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-3, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 8126416415424838.0976E576 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-3, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 8126416415424838.0976E576 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-3, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 8126416415424838.0976E576 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-4, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1802604953343814.7998E-702 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-4, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1802604953343814.7998E-702 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-4, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1802604953343814.7998E-702 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-4, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1802604953343814.7998E-702 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-4, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 1802604953343814.7998E-702 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-5, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-5, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-5, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-5, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-double-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxExclusive-5, + which is derived by restriction of built-in type double + by facet maxExclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-1, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 1E-1075 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-2, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 6093815593962905E-901 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-2, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 6093815593962905E-901 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-2, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 6093815593962905E-901 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-2, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 6093815593962905E-901 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-2, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 6093815593962905E-901 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-3, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 2868007748391511E-391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-3, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 2868007748391511E-391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-3, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 2868007748391511E-391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-3, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 2868007748391511E-391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-3, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 2868007748391511E-391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-4, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 3223760140412218E641 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-4, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 3223760140412218E641 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-4, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 3223760140412218E641 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-4, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 3223760140412218E641 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-4, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 3223760140412218E641 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-5, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-5, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-5, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-5, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-double-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-double-maxInclusive-5, + which is derived by restriction of built-in type double + by facet maxInclusive with a value of: 9007199254740991.9999E970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-1-1" origin="NIST"><description> + File: NISTSchema-double-pattern-1.xsd + This schema specifies a datatype, NISTSchema-double-pattern-1, + which is derived by restriction of built-in type double + by facet pattern with a value of: \dE\-\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-1-2" origin="NIST"><description> + File: NISTSchema-double-pattern-1.xsd + This schema specifies a datatype, NISTSchema-double-pattern-1, + which is derived by restriction of built-in type double + by facet pattern with a value of: \dE\-\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-1-3" origin="NIST"><description> + File: NISTSchema-double-pattern-1.xsd + This schema specifies a datatype, NISTSchema-double-pattern-1, + which is derived by restriction of built-in type double + by facet pattern with a value of: \dE\-\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-1-4" origin="NIST"><description> + File: NISTSchema-double-pattern-1.xsd + This schema specifies a datatype, NISTSchema-double-pattern-1, + which is derived by restriction of built-in type double + by facet pattern with a value of: \dE\-\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-1-5" origin="NIST"><description> + File: NISTSchema-double-pattern-1.xsd + This schema specifies a datatype, NISTSchema-double-pattern-1, + which is derived by restriction of built-in type double + by facet pattern with a value of: \dE\-\d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-2-1" origin="NIST"><description> + File: NISTSchema-double-pattern-2.xsd + This schema specifies a datatype, NISTSchema-double-pattern-2, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-2-2" origin="NIST"><description> + File: NISTSchema-double-pattern-2.xsd + This schema specifies a datatype, NISTSchema-double-pattern-2, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-2-3" origin="NIST"><description> + File: NISTSchema-double-pattern-2.xsd + This schema specifies a datatype, NISTSchema-double-pattern-2, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-2-4" origin="NIST"><description> + File: NISTSchema-double-pattern-2.xsd + This schema specifies a datatype, NISTSchema-double-pattern-2, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-2-5" origin="NIST"><description> + File: NISTSchema-double-pattern-2.xsd + This schema specifies a datatype, NISTSchema-double-pattern-2, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-3-1" origin="NIST"><description> + File: NISTSchema-double-pattern-3.xsd + This schema specifies a datatype, NISTSchema-double-pattern-3, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-3-2" origin="NIST"><description> + File: NISTSchema-double-pattern-3.xsd + This schema specifies a datatype, NISTSchema-double-pattern-3, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-3-3" origin="NIST"><description> + File: NISTSchema-double-pattern-3.xsd + This schema specifies a datatype, NISTSchema-double-pattern-3, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-3-4" origin="NIST"><description> + File: NISTSchema-double-pattern-3.xsd + This schema specifies a datatype, NISTSchema-double-pattern-3, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-3-5" origin="NIST"><description> + File: NISTSchema-double-pattern-3.xsd + This schema specifies a datatype, NISTSchema-double-pattern-3, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-4-1" origin="NIST"><description> + File: NISTSchema-double-pattern-4.xsd + This schema specifies a datatype, NISTSchema-double-pattern-4, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{10}\.\d{3}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-4-2" origin="NIST"><description> + File: NISTSchema-double-pattern-4.xsd + This schema specifies a datatype, NISTSchema-double-pattern-4, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{10}\.\d{3}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-4-3" origin="NIST"><description> + File: NISTSchema-double-pattern-4.xsd + This schema specifies a datatype, NISTSchema-double-pattern-4, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{10}\.\d{3}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-4-4" origin="NIST"><description> + File: NISTSchema-double-pattern-4.xsd + This schema specifies a datatype, NISTSchema-double-pattern-4, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{10}\.\d{3}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-4-5" origin="NIST"><description> + File: NISTSchema-double-pattern-4.xsd + This schema specifies a datatype, NISTSchema-double-pattern-4, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{10}\.\d{3}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-5-1" origin="NIST"><description> + File: NISTSchema-double-pattern-5.xsd + This schema specifies a datatype, NISTSchema-double-pattern-5, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-5-2" origin="NIST"><description> + File: NISTSchema-double-pattern-5.xsd + This schema specifies a datatype, NISTSchema-double-pattern-5, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-5-3" origin="NIST"><description> + File: NISTSchema-double-pattern-5.xsd + This schema specifies a datatype, NISTSchema-double-pattern-5, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-5-4" origin="NIST"><description> + File: NISTSchema-double-pattern-5.xsd + This schema specifies a datatype, NISTSchema-double-pattern-5, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-pattern-5-5" origin="NIST"><description> + File: NISTSchema-double-pattern-5.xsd + This schema specifies a datatype, NISTSchema-double-pattern-5, + which is derived by restriction of built-in type double + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-double-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-1, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 3388990546197.234E-49 + 1E2 + 876186.0143037994985E970 + 6817796047.544978366E432 + 2229108E-90 + 725559811.74709238E14 + 337.206E15 + 14.50598039966E970 + 18.561553287431864500E-9 + 87695.351388809128E3 + 32.8E4 + 1E-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-double-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-1, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 3388990546197.234E-49 + 1E2 + 876186.0143037994985E970 + 6817796047.544978366E432 + 2229108E-90 + 725559811.74709238E14 + 337.206E15 + 14.50598039966E970 + 18.561553287431864500E-9 + 87695.351388809128E3 + 32.8E4 + 1E-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-double-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-1, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 3388990546197.234E-49 + 1E2 + 876186.0143037994985E970 + 6817796047.544978366E432 + 2229108E-90 + 725559811.74709238E14 + 337.206E15 + 14.50598039966E970 + 18.561553287431864500E-9 + 87695.351388809128E3 + 32.8E4 + 1E-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-double-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-1, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 3388990546197.234E-49 + 1E2 + 876186.0143037994985E970 + 6817796047.544978366E432 + 2229108E-90 + 725559811.74709238E14 + 337.206E15 + 14.50598039966E970 + 18.561553287431864500E-9 + 87695.351388809128E3 + 32.8E4 + 1E-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-double-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-1, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 3388990546197.234E-49 + 1E2 + 876186.0143037994985E970 + 6817796047.544978366E432 + 2229108E-90 + 725559811.74709238E14 + 337.206E15 + 14.50598039966E970 + 18.561553287431864500E-9 + 87695.351388809128E3 + 32.8E4 + 1E-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-double-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-2, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 9007199254740991.9999E27 + 2.3944717152800076842E241 + 639305707.2827312E-1 + 46356.58160931099E1 + 17.223E-815 + 48.62597E22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-double-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-2, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 9007199254740991.9999E27 + 2.3944717152800076842E241 + 639305707.2827312E-1 + 46356.58160931099E1 + 17.223E-815 + 48.62597E22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-double-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-2, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 9007199254740991.9999E27 + 2.3944717152800076842E241 + 639305707.2827312E-1 + 46356.58160931099E1 + 17.223E-815 + 48.62597E22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-double-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-2, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 9007199254740991.9999E27 + 2.3944717152800076842E241 + 639305707.2827312E-1 + 46356.58160931099E1 + 17.223E-815 + 48.62597E22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-double-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-2, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 9007199254740991.9999E27 + 2.3944717152800076842E241 + 639305707.2827312E-1 + 46356.58160931099E1 + 17.223E-815 + 48.62597E22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-double-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-3, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 62513.85E-8 + 8021101353.36651E-3 + 502.62000E370 + 8262062300.9403E-2 + 2.0618538817496E8 + 9007199254740991.9999E58 + 1E41 + 8462683296.6E-375 + 223959899.653364E-672 + 454.592037716238E-33 + 965647278548398.1E15 + 336495.330733E270 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-double-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-3, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 62513.85E-8 + 8021101353.36651E-3 + 502.62000E370 + 8262062300.9403E-2 + 2.0618538817496E8 + 9007199254740991.9999E58 + 1E41 + 8462683296.6E-375 + 223959899.653364E-672 + 454.592037716238E-33 + 965647278548398.1E15 + 336495.330733E270 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-double-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-3, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 62513.85E-8 + 8021101353.36651E-3 + 502.62000E370 + 8262062300.9403E-2 + 2.0618538817496E8 + 9007199254740991.9999E58 + 1E41 + 8462683296.6E-375 + 223959899.653364E-672 + 454.592037716238E-33 + 965647278548398.1E15 + 336495.330733E270 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-double-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-3, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 62513.85E-8 + 8021101353.36651E-3 + 502.62000E370 + 8262062300.9403E-2 + 2.0618538817496E8 + 9007199254740991.9999E58 + 1E41 + 8462683296.6E-375 + 223959899.653364E-672 + 454.592037716238E-33 + 965647278548398.1E15 + 336495.330733E270 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-double-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-3, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 62513.85E-8 + 8021101353.36651E-3 + 502.62000E370 + 8262062300.9403E-2 + 2.0618538817496E8 + 9007199254740991.9999E58 + 1E41 + 8462683296.6E-375 + 223959899.653364E-672 + 454.592037716238E-33 + 965647278548398.1E15 + 336495.330733E270 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-double-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-4, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 1E6 + 6.148E970 + 186.034E970 + 37373364.830984501E-46 + 6.5E422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-double-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-4, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 1E6 + 6.148E970 + 186.034E970 + 37373364.830984501E-46 + 6.5E422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-double-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-4, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 1E6 + 6.148E970 + 186.034E970 + 37373364.830984501E-46 + 6.5E422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-double-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-4, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 1E6 + 6.148E970 + 186.034E970 + 37373364.830984501E-46 + 6.5E422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-double-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-4, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 1E6 + 6.148E970 + 186.034E970 + 37373364.830984501E-46 + 6.5E422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-double-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-5, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 984.5E94 + 144.2070575104E-56 + 9.013661E1 + 3472178612.88036E-531 + 9.50E7 + 2.06E-65 + 1E970 + 6463197.187855E-65 + 8453667133.3910E-736 + 8878.49730839E-3 + 3398077257.26E9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-double-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-5, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 984.5E94 + 144.2070575104E-56 + 9.013661E1 + 3472178612.88036E-531 + 9.50E7 + 2.06E-65 + 1E970 + 6463197.187855E-65 + 8453667133.3910E-736 + 8878.49730839E-3 + 3398077257.26E9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-double-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-5, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 984.5E94 + 144.2070575104E-56 + 9.013661E1 + 3472178612.88036E-531 + 9.50E7 + 2.06E-65 + 1E970 + 6463197.187855E-65 + 8453667133.3910E-736 + 8878.49730839E-3 + 3398077257.26E9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-double-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-5, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 984.5E94 + 144.2070575104E-56 + 9.013661E1 + 3472178612.88036E-531 + 9.50E7 + 2.06E-65 + 1E970 + 6463197.187855E-65 + 8453667133.3910E-736 + 8878.49730839E-3 + 3398077257.26E9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-double-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-double-enumeration-5, + which is derived by restriction of built-in type double + by facet enumeration with values of: + 984.5E94 + 144.2070575104E-56 + 9.013661E1 + 3472178612.88036E-531 + 9.50E7 + 2.06E-65 + 1E970 + 6463197.187855E-65 + 8453667133.3910E-736 + 8878.49730839E-3 + 3398077257.26E9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-double-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-double-whiteSpace-1, + which is derived by restriction of built-in type double + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-double-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-double-whiteSpace-1, + which is derived by restriction of built-in type double + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-double-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-double-whiteSpace-1, + which is derived by restriction of built-in type double + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-double-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-double-whiteSpace-1, + which is derived by restriction of built-in type double + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-double-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-double-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-double-whiteSpace-1, + which is derived by restriction of built-in type double + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-double-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-double-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-1, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-1, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-1, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-1, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-1, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-2, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2005Y06M23DT13H34M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-2, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2005Y06M23DT13H34M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-2, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2005Y06M23DT13H34M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-2, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2005Y06M23DT13H34M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-2, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2005Y06M23DT13H34M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-3, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1980Y12M17DT17H06M55S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-3, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1980Y12M17DT17H06M55S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-3, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1980Y12M17DT17H06M55S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-3, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1980Y12M17DT17H06M55S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-3, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P1980Y12M17DT17H06M55S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-4, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2010Y08M16DT15H39M05S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-4, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2010Y08M16DT15H39M05S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-4, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2010Y08M16DT15H39M05S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-4, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2010Y08M16DT15H39M05S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-4, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2010Y08M16DT15H39M05S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-duration-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-minExclusive-5, + which is derived by restriction of built-in type duration + by facet minExclusive with a value of: P2030Y12M31DT23H59M58S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-1, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-1, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-1, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-1, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-1, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-2, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y09M05DT23H12M08S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-2, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y09M05DT23H12M08S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-2, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y09M05DT23H12M08S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-2, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y09M05DT23H12M08S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-2, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1970Y09M05DT23H12M08S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-3, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1990Y10M14DT04H29M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-3, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1990Y10M14DT04H29M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-3, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1990Y10M14DT04H29M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-3, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1990Y10M14DT04H29M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-3, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P1990Y10M14DT04H29M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-4, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2028Y06M12DT07H30M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-4, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2028Y06M12DT07H30M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-4, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2028Y06M12DT07H30M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-4, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2028Y06M12DT07H30M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-4, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2028Y06M12DT07H30M26S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-duration-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-minInclusive-5, + which is derived by restriction of built-in type duration + by facet minInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-1, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1970Y01M01DT01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-2, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1973Y05M03DT12H05M06S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-2, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1973Y05M03DT12H05M06S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-2, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1973Y05M03DT12H05M06S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-2, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1973Y05M03DT12H05M06S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-2, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1973Y05M03DT12H05M06S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-3, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1994Y06M26DT08H01M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-3, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1994Y06M26DT08H01M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-3, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1994Y06M26DT08H01M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-3, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1994Y06M26DT08H01M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-3, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P1994Y06M26DT08H01M37S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-4, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2006Y02M02DT18H11S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-4, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2006Y02M02DT18H11S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-4, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2006Y02M02DT18H11S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-4, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2006Y02M02DT18H11S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-4, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2006Y02M02DT18H11S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-5, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-5, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-5, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-5, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-duration-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxExclusive-5, + which is derived by restriction of built-in type duration + by facet maxExclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-1, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1970Y01M01D + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-2, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1987Y11M16DT20H50M53S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-2, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1987Y11M16DT20H50M53S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-2, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1987Y11M16DT20H50M53S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-2, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1987Y11M16DT20H50M53S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-2, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P1987Y11M16DT20H50M53S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-3, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2012Y03M20DT16H19M41S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-3, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2012Y03M20DT16H19M41S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-3, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2012Y03M20DT16H19M41S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-3, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2012Y03M20DT16H19M41S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-3, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2012Y03M20DT16H19M41S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-4, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2029Y11M06DT19H55M07S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-4, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2029Y11M06DT19H55M07S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-4, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2029Y11M06DT19H55M07S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-4, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2029Y11M06DT19H55M07S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-4, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2029Y11M06DT19H55M07S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-5, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-5, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-5, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-5, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-duration-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-duration-maxInclusive-5, + which is derived by restriction of built-in type duration + by facet maxInclusive with a value of: P2030Y12M31DT23H59M59S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-1-1" origin="NIST"><description> + File: NISTSchema-duration-pattern-1.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-1, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY02M\d\dDT10H33M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-1-2" origin="NIST"><description> + File: NISTSchema-duration-pattern-1.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-1, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY02M\d\dDT10H33M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-1-3" origin="NIST"><description> + File: NISTSchema-duration-pattern-1.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-1, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY02M\d\dDT10H33M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-1-4" origin="NIST"><description> + File: NISTSchema-duration-pattern-1.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-1, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY02M\d\dDT10H33M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-1-5" origin="NIST"><description> + File: NISTSchema-duration-pattern-1.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-1, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY02M\d\dDT10H33M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-2-1" origin="NIST"><description> + File: NISTSchema-duration-pattern-2.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-2, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM20DT12H52M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-2-2" origin="NIST"><description> + File: NISTSchema-duration-pattern-2.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-2, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM20DT12H52M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-2-3" origin="NIST"><description> + File: NISTSchema-duration-pattern-2.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-2, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM20DT12H52M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-2-4" origin="NIST"><description> + File: NISTSchema-duration-pattern-2.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-2, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM20DT12H52M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-2-5" origin="NIST"><description> + File: NISTSchema-duration-pattern-2.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-2, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM20DT12H52M\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-3-1" origin="NIST"><description> + File: NISTSchema-duration-pattern-3.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-3, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM\d\dDT\d\dH19M42S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-3-2" origin="NIST"><description> + File: NISTSchema-duration-pattern-3.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-3, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM\d\dDT\d\dH19M42S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-3-3" origin="NIST"><description> + File: NISTSchema-duration-pattern-3.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-3, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM\d\dDT\d\dH19M42S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-3-4" origin="NIST"><description> + File: NISTSchema-duration-pattern-3.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-3, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM\d\dDT\d\dH19M42S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-3-5" origin="NIST"><description> + File: NISTSchema-duration-pattern-3.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-3, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY\d\dM\d\dDT\d\dH19M42S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-4-1" origin="NIST"><description> + File: NISTSchema-duration-pattern-4.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-4, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY03M22DT\d\dH\d\dM\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-4-2" origin="NIST"><description> + File: NISTSchema-duration-pattern-4.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-4, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY03M22DT\d\dH\d\dM\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-4-3" origin="NIST"><description> + File: NISTSchema-duration-pattern-4.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-4, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY03M22DT\d\dH\d\dM\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-4-4" origin="NIST"><description> + File: NISTSchema-duration-pattern-4.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-4, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY03M22DT\d\dH\d\dM\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-4-5" origin="NIST"><description> + File: NISTSchema-duration-pattern-4.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-4, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P\d\d\d\dY03M22DT\d\dH\d\dM\d\dS + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-5-1" origin="NIST"><description> + File: NISTSchema-duration-pattern-5.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-5, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P2015Y10M10DT\d\dH\d\dM46S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-5-2" origin="NIST"><description> + File: NISTSchema-duration-pattern-5.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-5, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P2015Y10M10DT\d\dH\d\dM46S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-5-3" origin="NIST"><description> + File: NISTSchema-duration-pattern-5.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-5, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P2015Y10M10DT\d\dH\d\dM46S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-5-4" origin="NIST"><description> + File: NISTSchema-duration-pattern-5.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-5, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P2015Y10M10DT\d\dH\d\dM46S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-pattern-5-5" origin="NIST"><description> + File: NISTSchema-duration-pattern-5.xsd + This schema specifies a datatype, NISTSchema-duration-pattern-5, + which is derived by restriction of built-in type duration + by facet pattern with a value of: P2015Y10M10DT\d\dH\d\dM46S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-duration-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-1, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1980Y07M02DT03H21M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-duration-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-1, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1980Y07M02DT03H21M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-duration-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-1, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1980Y07M02DT03H21M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-duration-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-1, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1980Y07M02DT03H21M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-duration-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-1, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1980Y07M02DT03H21M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-duration-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-2, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2029Y05M08DT09H40M58S + P1986Y10M12DT08H30M54S + P1974Y05M20DT10H17M50S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-duration-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-2, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2029Y05M08DT09H40M58S + P1986Y10M12DT08H30M54S + P1974Y05M20DT10H17M50S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-duration-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-2, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2029Y05M08DT09H40M58S + P1986Y10M12DT08H30M54S + P1974Y05M20DT10H17M50S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-duration-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-2, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2029Y05M08DT09H40M58S + P1986Y10M12DT08H30M54S + P1974Y05M20DT10H17M50S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-duration-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-2, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2029Y05M08DT09H40M58S + P1986Y10M12DT08H30M54S + P1974Y05M20DT10H17M50S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-duration-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-3, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2022Y12M09DT07H02M12S + P1998Y12M02DT16H59M02S + P1971Y10M19DT21H29M55S + P2028Y10M29DT11H40M43S + P1971Y01M19DT18H07M30S + P2030Y01M01DT08H44M38S + P1992Y04M29DT15H05M48S + P2029Y05M21DT07H28M45S + P1972Y08M24DT23H59M34S + P2012Y08M31DT03H47M48S + P1997Y02M17DT06H22S + P2030Y07M05DT12H48M07S + P2027Y11M06DT12H06M01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-duration-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-3, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2022Y12M09DT07H02M12S + P1998Y12M02DT16H59M02S + P1971Y10M19DT21H29M55S + P2028Y10M29DT11H40M43S + P1971Y01M19DT18H07M30S + P2030Y01M01DT08H44M38S + P1992Y04M29DT15H05M48S + P2029Y05M21DT07H28M45S + P1972Y08M24DT23H59M34S + P2012Y08M31DT03H47M48S + P1997Y02M17DT06H22S + P2030Y07M05DT12H48M07S + P2027Y11M06DT12H06M01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-duration-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-3, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2022Y12M09DT07H02M12S + P1998Y12M02DT16H59M02S + P1971Y10M19DT21H29M55S + P2028Y10M29DT11H40M43S + P1971Y01M19DT18H07M30S + P2030Y01M01DT08H44M38S + P1992Y04M29DT15H05M48S + P2029Y05M21DT07H28M45S + P1972Y08M24DT23H59M34S + P2012Y08M31DT03H47M48S + P1997Y02M17DT06H22S + P2030Y07M05DT12H48M07S + P2027Y11M06DT12H06M01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-duration-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-3, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2022Y12M09DT07H02M12S + P1998Y12M02DT16H59M02S + P1971Y10M19DT21H29M55S + P2028Y10M29DT11H40M43S + P1971Y01M19DT18H07M30S + P2030Y01M01DT08H44M38S + P1992Y04M29DT15H05M48S + P2029Y05M21DT07H28M45S + P1972Y08M24DT23H59M34S + P2012Y08M31DT03H47M48S + P1997Y02M17DT06H22S + P2030Y07M05DT12H48M07S + P2027Y11M06DT12H06M01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-duration-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-3, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2022Y12M09DT07H02M12S + P1998Y12M02DT16H59M02S + P1971Y10M19DT21H29M55S + P2028Y10M29DT11H40M43S + P1971Y01M19DT18H07M30S + P2030Y01M01DT08H44M38S + P1992Y04M29DT15H05M48S + P2029Y05M21DT07H28M45S + P1972Y08M24DT23H59M34S + P2012Y08M31DT03H47M48S + P1997Y02M17DT06H22S + P2030Y07M05DT12H48M07S + P2027Y11M06DT12H06M01S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-duration-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-4, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1989Y05M08DT10H06M25S + P1999Y05M08DT05H44M39S + P1997Y01M08DT05H58M05S + P2018Y07M31DT22H19M49S + P1971Y03M27DT04H34M35S + P1983Y04M24DT22H56M32S + P1983Y07M18DT10H32M40S + P2009Y03M06DT19H44M04S + P2001Y02M07DT07H51M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-duration-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-4, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1989Y05M08DT10H06M25S + P1999Y05M08DT05H44M39S + P1997Y01M08DT05H58M05S + P2018Y07M31DT22H19M49S + P1971Y03M27DT04H34M35S + P1983Y04M24DT22H56M32S + P1983Y07M18DT10H32M40S + P2009Y03M06DT19H44M04S + P2001Y02M07DT07H51M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-duration-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-4, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1989Y05M08DT10H06M25S + P1999Y05M08DT05H44M39S + P1997Y01M08DT05H58M05S + P2018Y07M31DT22H19M49S + P1971Y03M27DT04H34M35S + P1983Y04M24DT22H56M32S + P1983Y07M18DT10H32M40S + P2009Y03M06DT19H44M04S + P2001Y02M07DT07H51M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-duration-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-4, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1989Y05M08DT10H06M25S + P1999Y05M08DT05H44M39S + P1997Y01M08DT05H58M05S + P2018Y07M31DT22H19M49S + P1971Y03M27DT04H34M35S + P1983Y04M24DT22H56M32S + P1983Y07M18DT10H32M40S + P2009Y03M06DT19H44M04S + P2001Y02M07DT07H51M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-duration-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-4, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P1989Y05M08DT10H06M25S + P1999Y05M08DT05H44M39S + P1997Y01M08DT05H58M05S + P2018Y07M31DT22H19M49S + P1971Y03M27DT04H34M35S + P1983Y04M24DT22H56M32S + P1983Y07M18DT10H32M40S + P2009Y03M06DT19H44M04S + P2001Y02M07DT07H51M51S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-duration-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-5, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2001Y05M30DT01M30S + P1973Y11M09DT08H22M57S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-duration-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-5, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2001Y05M30DT01M30S + P1973Y11M09DT08H22M57S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-duration-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-5, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2001Y05M30DT01M30S + P1973Y11M09DT08H22M57S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-duration-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-5, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2001Y05M30DT01M30S + P1973Y11M09DT08H22M57S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-duration-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-duration-enumeration-5, + which is derived by restriction of built-in type duration + by facet enumeration with values of: + P2001Y05M30DT01M30S + P1973Y11M09DT08H22M57S + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-duration-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-duration-whiteSpace-1, + which is derived by restriction of built-in type duration + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-duration-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-duration-whiteSpace-1, + which is derived by restriction of built-in type duration + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-duration-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-duration-whiteSpace-1, + which is derived by restriction of built-in type duration + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-duration-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-duration-whiteSpace-1, + which is derived by restriction of built-in type duration + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-duration-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-duration-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-duration-whiteSpace-1, + which is derived by restriction of built-in type duration + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-duration-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-duration-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-float-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-1, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-float-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-1, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-float-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-1, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-float-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-1, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-float-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-1, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-float-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-2, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 15321341E-90 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-float-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-2, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 15321341E-90 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-float-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-2, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 15321341E-90 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-float-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-2, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 15321341E-90 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-float-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-2, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 15321341E-90 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-float-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-3, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 3385806E15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-float-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-3, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 3385806E15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-float-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-3, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 3385806E15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-float-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-3, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 3385806E15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-float-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-3, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 3385806E15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-float-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-4, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1586201E91 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-float-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-4, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1586201E91 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-float-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-4, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1586201E91 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-float-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-4, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1586201E91 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-float-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-4, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 1586201E91 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-float-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-minExclusive-5, + which is derived by restriction of built-in type float + by facet minExclusive with a value of: 16777214.999999999999E103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-float-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-1, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-float-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-1, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-float-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-1, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-float-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-1, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-float-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-1, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-float-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-2, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 3307733E-106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-float-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-2, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 3307733E-106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-float-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-2, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 3307733E-106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-float-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-2, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 3307733E-106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-float-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-2, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 3307733E-106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-float-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-3, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 11059829E101 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-float-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-3, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 11059829E101 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-float-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-3, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 11059829E101 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-float-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-3, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 11059829E101 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-float-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-3, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 11059829E101 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-float-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-4, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 10709760E-114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-float-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-4, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 10709760E-114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-float-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-4, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 10709760E-114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-float-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-4, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 10709760E-114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-float-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-4, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 10709760E-114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-float-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-minInclusive-5, + which is derived by restriction of built-in type float + by facet minInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-1, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 1.0000000000000000001E-148 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-2, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 8252374.886537892539E-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-2, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 8252374.886537892539E-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-2, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 8252374.886537892539E-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-2, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 8252374.886537892539E-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-2, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 8252374.886537892539E-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-3, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 13474170.317358693376E-103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-3, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 13474170.317358693376E-103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-3, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 13474170.317358693376E-103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-3, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 13474170.317358693376E-103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-3, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 13474170.317358693376E-103 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-4, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16114401.180834951767E-66 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-4, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16114401.180834951767E-66 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-4, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16114401.180834951767E-66 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-4, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16114401.180834951767E-66 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-4, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16114401.180834951767E-66 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-5, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-5, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-5, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-5, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-float-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxExclusive-5, + which is derived by restriction of built-in type float + by facet maxExclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-1, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 1E-149 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-2, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13865366E93 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-2, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13865366E93 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-2, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13865366E93 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-2, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13865366E93 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-2, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13865366E93 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-3, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 2664630E-74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-3, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 2664630E-74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-3, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 2664630E-74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-3, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 2664630E-74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-3, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 2664630E-74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-4, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13663412E67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-4, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13663412E67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-4, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13663412E67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-4, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13663412E67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-4, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 13663412E67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-5, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-5, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-5, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-5, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-float-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-float-maxInclusive-5, + which is derived by restriction of built-in type float + by facet maxInclusive with a value of: 16777215.999999999999E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-1-1" origin="NIST"><description> + File: NISTSchema-float-pattern-1.xsd + This schema specifies a datatype, NISTSchema-float-pattern-1, + which is derived by restriction of built-in type float + by facet pattern with a value of: \dE\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-1-2" origin="NIST"><description> + File: NISTSchema-float-pattern-1.xsd + This schema specifies a datatype, NISTSchema-float-pattern-1, + which is derived by restriction of built-in type float + by facet pattern with a value of: \dE\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-1-3" origin="NIST"><description> + File: NISTSchema-float-pattern-1.xsd + This schema specifies a datatype, NISTSchema-float-pattern-1, + which is derived by restriction of built-in type float + by facet pattern with a value of: \dE\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-1-4" origin="NIST"><description> + File: NISTSchema-float-pattern-1.xsd + This schema specifies a datatype, NISTSchema-float-pattern-1, + which is derived by restriction of built-in type float + by facet pattern with a value of: \dE\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-1-5" origin="NIST"><description> + File: NISTSchema-float-pattern-1.xsd + This schema specifies a datatype, NISTSchema-float-pattern-1, + which is derived by restriction of built-in type float + by facet pattern with a value of: \dE\-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-2-1" origin="NIST"><description> + File: NISTSchema-float-pattern-2.xsd + This schema specifies a datatype, NISTSchema-float-pattern-2, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-2-2" origin="NIST"><description> + File: NISTSchema-float-pattern-2.xsd + This schema specifies a datatype, NISTSchema-float-pattern-2, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-2-3" origin="NIST"><description> + File: NISTSchema-float-pattern-2.xsd + This schema specifies a datatype, NISTSchema-float-pattern-2, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-2-4" origin="NIST"><description> + File: NISTSchema-float-pattern-2.xsd + This schema specifies a datatype, NISTSchema-float-pattern-2, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-2-5" origin="NIST"><description> + File: NISTSchema-float-pattern-2.xsd + This schema specifies a datatype, NISTSchema-float-pattern-2, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{4}E\-\d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-3-1" origin="NIST"><description> + File: NISTSchema-float-pattern-3.xsd + This schema specifies a datatype, NISTSchema-float-pattern-3, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-3-2" origin="NIST"><description> + File: NISTSchema-float-pattern-3.xsd + This schema specifies a datatype, NISTSchema-float-pattern-3, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-3-3" origin="NIST"><description> + File: NISTSchema-float-pattern-3.xsd + This schema specifies a datatype, NISTSchema-float-pattern-3, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-3-4" origin="NIST"><description> + File: NISTSchema-float-pattern-3.xsd + This schema specifies a datatype, NISTSchema-float-pattern-3, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-3-5" origin="NIST"><description> + File: NISTSchema-float-pattern-3.xsd + This schema specifies a datatype, NISTSchema-float-pattern-3, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{5}\.\d{4}E\-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-4-1" origin="NIST"><description> + File: NISTSchema-float-pattern-4.xsd + This schema specifies a datatype, NISTSchema-float-pattern-4, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{7}\.\d{6}E\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-4-2" origin="NIST"><description> + File: NISTSchema-float-pattern-4.xsd + This schema specifies a datatype, NISTSchema-float-pattern-4, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{7}\.\d{6}E\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-4-3" origin="NIST"><description> + File: NISTSchema-float-pattern-4.xsd + This schema specifies a datatype, NISTSchema-float-pattern-4, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{7}\.\d{6}E\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-4-4" origin="NIST"><description> + File: NISTSchema-float-pattern-4.xsd + This schema specifies a datatype, NISTSchema-float-pattern-4, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{7}\.\d{6}E\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-4-5" origin="NIST"><description> + File: NISTSchema-float-pattern-4.xsd + This schema specifies a datatype, NISTSchema-float-pattern-4, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{7}\.\d{6}E\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-5-1" origin="NIST"><description> + File: NISTSchema-float-pattern-5.xsd + This schema specifies a datatype, NISTSchema-float-pattern-5, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-5-2" origin="NIST"><description> + File: NISTSchema-float-pattern-5.xsd + This schema specifies a datatype, NISTSchema-float-pattern-5, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-5-3" origin="NIST"><description> + File: NISTSchema-float-pattern-5.xsd + This schema specifies a datatype, NISTSchema-float-pattern-5, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-5-4" origin="NIST"><description> + File: NISTSchema-float-pattern-5.xsd + This schema specifies a datatype, NISTSchema-float-pattern-5, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-pattern-5-5" origin="NIST"><description> + File: NISTSchema-float-pattern-5.xsd + This schema specifies a datatype, NISTSchema-float-pattern-5, + which is derived by restriction of built-in type float + by facet pattern with a value of: \d{1}\.\d{19}E\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-float-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-1, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 10E8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-float-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-1, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 10E8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-float-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-1, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 10E8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-float-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-1, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 10E8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-float-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-1, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 10E8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-float-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-2, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65556.05328541E-18 + 16777215.999999999999E31 + 5964894.839E-9 + 16777215.999999999999E-81 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-float-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-2, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65556.05328541E-18 + 16777215.999999999999E31 + 5964894.839E-9 + 16777215.999999999999E-81 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-float-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-2, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65556.05328541E-18 + 16777215.999999999999E31 + 5964894.839E-9 + 16777215.999999999999E-81 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-float-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-2, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65556.05328541E-18 + 16777215.999999999999E31 + 5964894.839E-9 + 16777215.999999999999E-81 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-float-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-2, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65556.05328541E-18 + 16777215.999999999999E31 + 5964894.839E-9 + 16777215.999999999999E-81 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-float-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-3, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65693.459298875434E5 + 2.3605618991609E42 + 16777215.999999999999E104 + 16777215.999999999999E46 + 1E-82 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-float-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-3, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65693.459298875434E5 + 2.3605618991609E42 + 16777215.999999999999E104 + 16777215.999999999999E46 + 1E-82 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-float-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-3, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65693.459298875434E5 + 2.3605618991609E42 + 16777215.999999999999E104 + 16777215.999999999999E46 + 1E-82 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-float-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-3, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65693.459298875434E5 + 2.3605618991609E42 + 16777215.999999999999E104 + 16777215.999999999999E46 + 1E-82 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-float-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-3, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 65693.459298875434E5 + 2.3605618991609E42 + 16777215.999999999999E104 + 16777215.999999999999E46 + 1E-82 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-float-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-4, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 11414262.47596E24 + 98810.0067364E15 + 16777215.999999999999E26 + 6095.46082E-4 + 47E-32 + 16777215.999999999999E49 + 769901.81132420E55 + 207291.7976206256618E-3 + 16777215.999999999999E97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-float-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-4, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 11414262.47596E24 + 98810.0067364E15 + 16777215.999999999999E26 + 6095.46082E-4 + 47E-32 + 16777215.999999999999E49 + 769901.81132420E55 + 207291.7976206256618E-3 + 16777215.999999999999E97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-float-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-4, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 11414262.47596E24 + 98810.0067364E15 + 16777215.999999999999E26 + 6095.46082E-4 + 47E-32 + 16777215.999999999999E49 + 769901.81132420E55 + 207291.7976206256618E-3 + 16777215.999999999999E97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-float-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-4, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 11414262.47596E24 + 98810.0067364E15 + 16777215.999999999999E26 + 6095.46082E-4 + 47E-32 + 16777215.999999999999E49 + 769901.81132420E55 + 207291.7976206256618E-3 + 16777215.999999999999E97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-float-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-4, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 11414262.47596E24 + 98810.0067364E15 + 16777215.999999999999E26 + 6095.46082E-4 + 47E-32 + 16777215.999999999999E49 + 769901.81132420E55 + 207291.7976206256618E-3 + 16777215.999999999999E97 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-float-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-5, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 39291.153E5 + 16777215.999999999999E25 + 157224.46607773232E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-float-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-5, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 39291.153E5 + 16777215.999999999999E25 + 157224.46607773232E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-float-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-5, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 39291.153E5 + 16777215.999999999999E25 + 157224.46607773232E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-float-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-5, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 39291.153E5 + 16777215.999999999999E25 + 157224.46607773232E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-float-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-float-enumeration-5, + which is derived by restriction of built-in type float + by facet enumeration with values of: + 39291.153E5 + 16777215.999999999999E25 + 157224.46607773232E104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-float-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-float-whiteSpace-1, + which is derived by restriction of built-in type float + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-float-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-float-whiteSpace-1, + which is derived by restriction of built-in type float + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-float-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-float-whiteSpace-1, + which is derived by restriction of built-in type float + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-float-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-float-whiteSpace-1, + which is derived by restriction of built-in type float + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-float-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-float-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-float-whiteSpace-1, + which is derived by restriction of built-in type float + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-float-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-float-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-1, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-1, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-1, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-1, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-1, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-2, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-2, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-2, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-2, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-2, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-3, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-3, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-3, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-3, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-3, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-4, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-4, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-4, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-4, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-4, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gDay-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-minExclusive-5, + which is derived by restriction of built-in type gDay + by facet minExclusive with a value of: ---30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-1, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-1, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-1, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-1, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-1, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-2, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-2, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-2, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-2, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-2, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-3, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-3, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-3, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-3, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-3, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-4, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-4, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-4, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-4, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-4, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gDay-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-minInclusive-5, + which is derived by restriction of built-in type gDay + by facet minInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-1, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-2, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-2, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-2, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-2, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-2, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-3, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-3, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-3, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-3, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-3, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-4, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-4, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-4, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-4, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-4, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---28 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-5, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-5, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-5, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-5, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-gDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxExclusive-5, + which is derived by restriction of built-in type gDay + by facet maxExclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-1, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-2, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-2, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-2, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-2, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-2, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-3, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-3, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-3, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-3, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-3, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-4, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-5, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-5, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-5, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-5, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-gDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gDay-maxInclusive-5, + which is derived by restriction of built-in type gDay + by facet maxInclusive with a value of: ---31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-1-1" origin="NIST"><description> + File: NISTSchema-gDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-1, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-1-2" origin="NIST"><description> + File: NISTSchema-gDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-1, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-1-3" origin="NIST"><description> + File: NISTSchema-gDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-1, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-1-4" origin="NIST"><description> + File: NISTSchema-gDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-1, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-1-5" origin="NIST"><description> + File: NISTSchema-gDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-1, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-2-1" origin="NIST"><description> + File: NISTSchema-gDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-2, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-2-2" origin="NIST"><description> + File: NISTSchema-gDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-2, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-2-3" origin="NIST"><description> + File: NISTSchema-gDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-2, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-2-4" origin="NIST"><description> + File: NISTSchema-gDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-2, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-2-5" origin="NIST"><description> + File: NISTSchema-gDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-2, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-3-1" origin="NIST"><description> + File: NISTSchema-gDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-3, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-3-2" origin="NIST"><description> + File: NISTSchema-gDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-3, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-3-3" origin="NIST"><description> + File: NISTSchema-gDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-3, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-3-4" origin="NIST"><description> + File: NISTSchema-gDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-3, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-3-5" origin="NIST"><description> + File: NISTSchema-gDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-3, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-4-1" origin="NIST"><description> + File: NISTSchema-gDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-4, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-4-2" origin="NIST"><description> + File: NISTSchema-gDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-4, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-4-3" origin="NIST"><description> + File: NISTSchema-gDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-4, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-4-4" origin="NIST"><description> + File: NISTSchema-gDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-4, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-4-5" origin="NIST"><description> + File: NISTSchema-gDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-4, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-5-1" origin="NIST"><description> + File: NISTSchema-gDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-5, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-5-2" origin="NIST"><description> + File: NISTSchema-gDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-5, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-5-3" origin="NIST"><description> + File: NISTSchema-gDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-5, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-5-4" origin="NIST"><description> + File: NISTSchema-gDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-5, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-pattern-5-5" origin="NIST"><description> + File: NISTSchema-gDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gDay-pattern-5, + which is derived by restriction of built-in type gDay + by facet pattern with a value of: ---21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-1, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---26 + ---09 + ---09 + ---16 + ---15 + ---12 + ---24 + ---14 + ---21 + ---30 + ---11 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-1, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---26 + ---09 + ---09 + ---16 + ---15 + ---12 + ---24 + ---14 + ---21 + ---30 + ---11 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-1, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---26 + ---09 + ---09 + ---16 + ---15 + ---12 + ---24 + ---14 + ---21 + ---30 + ---11 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-1, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---26 + ---09 + ---09 + ---16 + ---15 + ---12 + ---24 + ---14 + ---21 + ---30 + ---11 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-1, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---26 + ---09 + ---09 + ---16 + ---15 + ---12 + ---24 + ---14 + ---21 + ---30 + ---11 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-2, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---30 + ---28 + ---07 + ---11 + ---13 + ---12 + ---30 + ---12 + ---20 + ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-2, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---30 + ---28 + ---07 + ---11 + ---13 + ---12 + ---30 + ---12 + ---20 + ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-2, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---30 + ---28 + ---07 + ---11 + ---13 + ---12 + ---30 + ---12 + ---20 + ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-2, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---30 + ---28 + ---07 + ---11 + ---13 + ---12 + ---30 + ---12 + ---20 + ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-2, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---30 + ---28 + ---07 + ---11 + ---13 + ---12 + ---30 + ---12 + ---20 + ---29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-3, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---19 + ---11 + ---20 + ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-3, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---19 + ---11 + ---20 + ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-3, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---19 + ---11 + ---20 + ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-3, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---19 + ---11 + ---20 + ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-3, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---19 + ---11 + ---20 + ---14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-4, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---22 + ---15 + ---26 + ---18 + ---05 + ---25 + ---27 + ---15 + ---19 + ---23 + ---13 + ---19 + ---17 + ---20 + ---24 + ---21 + ---30 + ---11 + ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-4, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---22 + ---15 + ---26 + ---18 + ---05 + ---25 + ---27 + ---15 + ---19 + ---23 + ---13 + ---19 + ---17 + ---20 + ---24 + ---21 + ---30 + ---11 + ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-4, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---22 + ---15 + ---26 + ---18 + ---05 + ---25 + ---27 + ---15 + ---19 + ---23 + ---13 + ---19 + ---17 + ---20 + ---24 + ---21 + ---30 + ---11 + ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-4, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---22 + ---15 + ---26 + ---18 + ---05 + ---25 + ---27 + ---15 + ---19 + ---23 + ---13 + ---19 + ---17 + ---20 + ---24 + ---21 + ---30 + ---11 + ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-4, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---22 + ---15 + ---26 + ---18 + ---05 + ---25 + ---27 + ---15 + ---19 + ---23 + ---13 + ---19 + ---17 + ---20 + ---24 + ---21 + ---30 + ---11 + ---05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-5, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---02 + ---27 + ---24 + ---09 + ---19 + ---11 + ---01 + ---14 + ---22 + ---26 + ---25 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-5, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---02 + ---27 + ---24 + ---09 + ---19 + ---11 + ---01 + ---14 + ---22 + ---26 + ---25 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-5, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---02 + ---27 + ---24 + ---09 + ---19 + ---11 + ---01 + ---14 + ---22 + ---26 + ---25 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-5, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---02 + ---27 + ---24 + ---09 + ---19 + ---11 + ---01 + ---14 + ---22 + ---26 + ---25 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-gDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gDay-enumeration-5, + which is derived by restriction of built-in type gDay + by facet enumeration with values of: + ---02 + ---27 + ---24 + ---09 + ---19 + ---11 + ---01 + ---14 + ---22 + ---26 + ---25 + ---16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-gDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gDay-whiteSpace-1, + which is derived by restriction of built-in type gDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-gDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gDay-whiteSpace-1, + which is derived by restriction of built-in type gDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-gDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gDay-whiteSpace-1, + which is derived by restriction of built-in type gDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-gDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gDay-whiteSpace-1, + which is derived by restriction of built-in type gDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gDay-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-gDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gDay-whiteSpace-1, + which is derived by restriction of built-in type gDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gDay-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --06-20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --06-20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --06-20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --06-20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --06-20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --10-27 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet minExclusive with a value of: --12-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --06-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --06-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --06-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --06-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --06-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --04-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --04-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --04-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --04-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --04-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --09-23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-minInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet minInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --01-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --10-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --10-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --10-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --10-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --10-06 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --06-30 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxExclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxExclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-1, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --01-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --05-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --05-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --05-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --05-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-2, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --05-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-3, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-4, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --10-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-maxInclusive-5, + which is derived by restriction of built-in type gMonthDay + by facet maxInclusive with a value of: --12-31 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-1, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --12-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-1-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-1, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --12-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-1-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-1, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --12-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-1-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-1, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --12-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-1-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-1, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --12-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-2, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --08-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-2, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --08-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-2, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --08-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-2, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --08-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-2, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --08-25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-3, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --04-14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-3, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --04-14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-3, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --04-14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-3, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --04-14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-3, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --04-14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-4, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --05-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-4, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --05-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-4, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --05-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-4, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --05-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-4, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --05-24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-5, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --\d\d-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-5-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-5, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --\d\d-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-5-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-5, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --\d\d-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-5-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-5, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --\d\d-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-pattern-5-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-pattern-5, + which is derived by restriction of built-in type gMonthDay + by facet pattern with a value of: --\d\d-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-1, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --09-23 + --01-24 + --03-05 + --06-08 + --04-25 + --05-21 + --10-06 + --08-15 + --04-19 + --08-20 + --11-20 + --03-15 + --12-29 + --12-01 + --11-24 + --09-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-1, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --09-23 + --01-24 + --03-05 + --06-08 + --04-25 + --05-21 + --10-06 + --08-15 + --04-19 + --08-20 + --11-20 + --03-15 + --12-29 + --12-01 + --11-24 + --09-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-1, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --09-23 + --01-24 + --03-05 + --06-08 + --04-25 + --05-21 + --10-06 + --08-15 + --04-19 + --08-20 + --11-20 + --03-15 + --12-29 + --12-01 + --11-24 + --09-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-1, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --09-23 + --01-24 + --03-05 + --06-08 + --04-25 + --05-21 + --10-06 + --08-15 + --04-19 + --08-20 + --11-20 + --03-15 + --12-29 + --12-01 + --11-24 + --09-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-1, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --09-23 + --01-24 + --03-05 + --06-08 + --04-25 + --05-21 + --10-06 + --08-15 + --04-19 + --08-20 + --11-20 + --03-15 + --12-29 + --12-01 + --11-24 + --09-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-2, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --07-23 + --09-02 + --07-03 + --09-26 + --05-30 + --11-27 + --10-13 + --04-27 + --05-15 + --10-02 + --06-08 + --08-22 + --07-23 + --01-02 + --08-25 + --09-20 + --03-29 + --08-27 + --11-21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-2, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --07-23 + --09-02 + --07-03 + --09-26 + --05-30 + --11-27 + --10-13 + --04-27 + --05-15 + --10-02 + --06-08 + --08-22 + --07-23 + --01-02 + --08-25 + --09-20 + --03-29 + --08-27 + --11-21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-2, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --07-23 + --09-02 + --07-03 + --09-26 + --05-30 + --11-27 + --10-13 + --04-27 + --05-15 + --10-02 + --06-08 + --08-22 + --07-23 + --01-02 + --08-25 + --09-20 + --03-29 + --08-27 + --11-21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-2, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --07-23 + --09-02 + --07-03 + --09-26 + --05-30 + --11-27 + --10-13 + --04-27 + --05-15 + --10-02 + --06-08 + --08-22 + --07-23 + --01-02 + --08-25 + --09-20 + --03-29 + --08-27 + --11-21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-2, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --07-23 + --09-02 + --07-03 + --09-26 + --05-30 + --11-27 + --10-13 + --04-27 + --05-15 + --10-02 + --06-08 + --08-22 + --07-23 + --01-02 + --08-25 + --09-20 + --03-29 + --08-27 + --11-21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-3, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --01-27 + --07-19 + --03-06 + --03-01 + --10-03 + --08-12 + --08-17 + --12-02 + --07-01 + --06-19 + --01-20 + --01-02 + --12-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-3, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --01-27 + --07-19 + --03-06 + --03-01 + --10-03 + --08-12 + --08-17 + --12-02 + --07-01 + --06-19 + --01-20 + --01-02 + --12-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-3, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --01-27 + --07-19 + --03-06 + --03-01 + --10-03 + --08-12 + --08-17 + --12-02 + --07-01 + --06-19 + --01-20 + --01-02 + --12-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-3, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --01-27 + --07-19 + --03-06 + --03-01 + --10-03 + --08-12 + --08-17 + --12-02 + --07-01 + --06-19 + --01-20 + --01-02 + --12-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-3, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --01-27 + --07-19 + --03-06 + --03-01 + --10-03 + --08-12 + --08-17 + --12-02 + --07-01 + --06-19 + --01-20 + --01-02 + --12-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-4, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --05-23 + --11-05 + --03-22 + --06-15 + --04-13 + --07-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-4, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --05-23 + --11-05 + --03-22 + --06-15 + --04-13 + --07-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-4, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --05-23 + --11-05 + --03-22 + --06-15 + --04-13 + --07-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-4, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --05-23 + --11-05 + --03-22 + --06-15 + --04-13 + --07-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-4, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --05-23 + --11-05 + --03-22 + --06-15 + --04-13 + --07-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-5, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --08-31 + --12-25 + --03-11 + --05-07 + --07-27 + --02-15 + --04-19 + --06-09 + --03-10 + --06-29 + --07-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-5, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --08-31 + --12-25 + --03-11 + --05-07 + --07-27 + --02-15 + --04-19 + --06-09 + --03-10 + --06-29 + --07-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-5, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --08-31 + --12-25 + --03-11 + --05-07 + --07-27 + --02-15 + --04-19 + --06-09 + --03-10 + --06-29 + --07-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-5, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --08-31 + --12-25 + --03-11 + --05-07 + --07-27 + --02-15 + --04-19 + --06-09 + --03-10 + --06-29 + --07-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-enumeration-5, + which is derived by restriction of built-in type gMonthDay + by facet enumeration with values of: + --08-31 + --12-25 + --03-11 + --05-07 + --07-27 + --02-15 + --04-19 + --06-09 + --03-10 + --06-29 + --07-13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-gMonthDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-whiteSpace-1, + which is derived by restriction of built-in type gMonthDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-gMonthDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-whiteSpace-1, + which is derived by restriction of built-in type gMonthDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-gMonthDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-whiteSpace-1, + which is derived by restriction of built-in type gMonthDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-gMonthDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-whiteSpace-1, + which is derived by restriction of built-in type gMonthDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonthDay-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-gMonthDay-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonthDay-whiteSpace-1, + which is derived by restriction of built-in type gMonthDay + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonthDay-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonthDay-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-1, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-1, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-1, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-1, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-1, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-2, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-2, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-2, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-2, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-2, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-3, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-3, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-3, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-3, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-3, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-4, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --03-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-4, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --03-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-4, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --03-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-4, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --03-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-4, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --03-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-minExclusive-5, + which is derived by restriction of built-in type gMonth + by facet minExclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-1, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-1, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-1, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-1, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-1, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-2, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-2, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-2, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-2, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-2, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-3, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-3, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-3, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-3, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-3, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-4, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --08-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-4, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --08-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-4, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --08-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-4, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --08-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-4, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --08-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-minInclusive-5, + which is derived by restriction of built-in type gMonth + by facet minInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-1, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --02-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxExclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxExclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-1, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-2, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-3, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --04-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-4, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-gMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-maxInclusive-5, + which is derived by restriction of built-in type gMonth + by facet maxInclusive with a value of: --12-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-1, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-1-2" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-1, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-1-3" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-1, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-1-4" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-1, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-1-5" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-1, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-2, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-2, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-2, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-2, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-2, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-3, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-3, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-3, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-3, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-3, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-4, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-4, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-4, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-4, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-4, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --01-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-5, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --07-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-5-2" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-5, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --07-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-5-3" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-5, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --07-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-5-4" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-5, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --07-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-pattern-5-5" origin="NIST"><description> + File: NISTSchema-gMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-pattern-5, + which is derived by restriction of built-in type gMonth + by facet pattern with a value of: --07-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-1, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --09-- + --04-- + --10-- + --03-- + --12-- + --09-- + --08-- + --12-- + --07-- + --08-- + --10-- + --06-- + --03-- + --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-1, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --09-- + --04-- + --10-- + --03-- + --12-- + --09-- + --08-- + --12-- + --07-- + --08-- + --10-- + --06-- + --03-- + --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-1, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --09-- + --04-- + --10-- + --03-- + --12-- + --09-- + --08-- + --12-- + --07-- + --08-- + --10-- + --06-- + --03-- + --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-1, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --09-- + --04-- + --10-- + --03-- + --12-- + --09-- + --08-- + --12-- + --07-- + --08-- + --10-- + --06-- + --03-- + --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-1, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --09-- + --04-- + --10-- + --03-- + --12-- + --09-- + --08-- + --12-- + --07-- + --08-- + --10-- + --06-- + --03-- + --10-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-2, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --12-- + --09-- + --11-- + --08-- + --06-- + --10-- + --08-- + --06-- + --08-- + --06-- + --05-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-2, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --12-- + --09-- + --11-- + --08-- + --06-- + --10-- + --08-- + --06-- + --08-- + --06-- + --05-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-2, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --12-- + --09-- + --11-- + --08-- + --06-- + --10-- + --08-- + --06-- + --08-- + --06-- + --05-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-2, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --12-- + --09-- + --11-- + --08-- + --06-- + --10-- + --08-- + --06-- + --08-- + --06-- + --05-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-2, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --12-- + --09-- + --11-- + --08-- + --06-- + --10-- + --08-- + --06-- + --08-- + --06-- + --05-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-3, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --02-- + --03-- + --05-- + --03-- + --03-- + --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-3, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --02-- + --03-- + --05-- + --03-- + --03-- + --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-3, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --02-- + --03-- + --05-- + --03-- + --03-- + --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-3, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --02-- + --03-- + --05-- + --03-- + --03-- + --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-3, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --02-- + --03-- + --05-- + --03-- + --03-- + --11-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-4, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --10-- + --07-- + --09-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-4, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --10-- + --07-- + --09-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-4, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --10-- + --07-- + --09-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-4, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --10-- + --07-- + --09-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-4, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --10-- + --07-- + --09-- + --06-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-5, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --03-- + --05-- + --12-- + --02-- + --04-- + --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-5, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --03-- + --05-- + --12-- + --02-- + --04-- + --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-5, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --03-- + --05-- + --12-- + --02-- + --04-- + --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-5, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --03-- + --05-- + --12-- + --02-- + --04-- + --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-gMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gMonth-enumeration-5, + which is derived by restriction of built-in type gMonth + by facet enumeration with values of: + --03-- + --05-- + --12-- + --02-- + --04-- + --05-- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-gMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-whiteSpace-1, + which is derived by restriction of built-in type gMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-gMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-whiteSpace-1, + which is derived by restriction of built-in type gMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-gMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-whiteSpace-1, + which is derived by restriction of built-in type gMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-gMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-whiteSpace-1, + which is derived by restriction of built-in type gMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gMonth-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-gMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gMonth-whiteSpace-1, + which is derived by restriction of built-in type gMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gMonth-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1971-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1971-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1971-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1971-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1971-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2026-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2026-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2026-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2026-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2026-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1980-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1980-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1980-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1980-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 1980-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet minExclusive with a value of: 2030-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2024-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2024-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2024-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2024-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2024-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1999-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1999-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1999-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1999-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 1999-04 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2009-09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2009-09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2009-09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2009-09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2009-09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-minInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet minInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1970-02 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2015-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2015-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2015-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2015-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2015-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1998-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1998-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1998-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1998-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1998-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1991-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1991-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1991-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1991-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 1991-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxExclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxExclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-1, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1970-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1992-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1992-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1992-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1992-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-2, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1992-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2013-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2013-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2013-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2013-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-3, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2013-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1981-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1981-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1981-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1981-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-4, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 1981-11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-maxInclusive-5, + which is derived by restriction of built-in type gYearMonth + by facet maxInclusive with a value of: 2030-12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-1, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: \d\d\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-1-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-1, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: \d\d\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-1-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-1, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: \d\d\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-1-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-1, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: \d\d\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-1-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-1, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: \d\d\d\d-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-2, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1973-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-2, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1973-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-2, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1973-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-2, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1973-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-2, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1973-01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-3, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1994-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-3, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1994-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-3, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1994-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-3, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1994-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-3, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1994-03 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-4, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 2023-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-4, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 2023-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-4, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 2023-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-4, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 2023-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-4, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 2023-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-5, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1998-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-5-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-5, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1998-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-5-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-5, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1998-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-5-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-5, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1998-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-pattern-5-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-pattern-5, + which is derived by restriction of built-in type gYearMonth + by facet pattern with a value of: 1998-\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-1, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2023-10 + 2022-09 + 2007-06 + 1973-04 + 1987-10 + 2001-07 + 2029-07 + 2014-12 + 2003-11 + 1995-03 + 2021-05 + 2009-11 + 1986-04 + 2024-04 + 2013-10 + 1973-05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-1, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2023-10 + 2022-09 + 2007-06 + 1973-04 + 1987-10 + 2001-07 + 2029-07 + 2014-12 + 2003-11 + 1995-03 + 2021-05 + 2009-11 + 1986-04 + 2024-04 + 2013-10 + 1973-05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-1, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2023-10 + 2022-09 + 2007-06 + 1973-04 + 1987-10 + 2001-07 + 2029-07 + 2014-12 + 2003-11 + 1995-03 + 2021-05 + 2009-11 + 1986-04 + 2024-04 + 2013-10 + 1973-05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-1, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2023-10 + 2022-09 + 2007-06 + 1973-04 + 1987-10 + 2001-07 + 2029-07 + 2014-12 + 2003-11 + 1995-03 + 2021-05 + 2009-11 + 1986-04 + 2024-04 + 2013-10 + 1973-05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-1, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2023-10 + 2022-09 + 2007-06 + 1973-04 + 1987-10 + 2001-07 + 2029-07 + 2014-12 + 2003-11 + 1995-03 + 2021-05 + 2009-11 + 1986-04 + 2024-04 + 2013-10 + 1973-05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-2, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2025-03 + 1989-07 + 2001-12 + 2025-08 + 1990-10 + 2016-06 + 2018-09 + 2000-08 + 2008-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-2, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2025-03 + 1989-07 + 2001-12 + 2025-08 + 1990-10 + 2016-06 + 2018-09 + 2000-08 + 2008-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-2, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2025-03 + 1989-07 + 2001-12 + 2025-08 + 1990-10 + 2016-06 + 2018-09 + 2000-08 + 2008-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-2, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2025-03 + 1989-07 + 2001-12 + 2025-08 + 1990-10 + 2016-06 + 2018-09 + 2000-08 + 2008-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-2, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2025-03 + 1989-07 + 2001-12 + 2025-08 + 1990-10 + 2016-06 + 2018-09 + 2000-08 + 2008-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-3, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1995-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-3, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1995-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-3, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1995-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-3, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1995-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-3, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1995-07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-4, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1997-08 + 1974-02 + 2014-07 + 1974-06 + 1993-01 + 1990-06 + 1972-06 + 2009-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-4, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1997-08 + 1974-02 + 2014-07 + 1974-06 + 1993-01 + 1990-06 + 1972-06 + 2009-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-4, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1997-08 + 1974-02 + 2014-07 + 1974-06 + 1993-01 + 1990-06 + 1972-06 + 2009-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-4, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1997-08 + 1974-02 + 2014-07 + 1974-06 + 1993-01 + 1990-06 + 1972-06 + 2009-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-4, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 1997-08 + 1974-02 + 2014-07 + 1974-06 + 1993-01 + 1990-06 + 1972-06 + 2009-10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-5, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2027-09 + 2008-03 + 1994-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-5, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2027-09 + 2008-03 + 1994-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-5, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2027-09 + 2008-03 + 1994-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-5, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2027-09 + 2008-03 + 1994-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-enumeration-5, + which is derived by restriction of built-in type gYearMonth + by facet enumeration with values of: + 2027-09 + 2008-03 + 1994-08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-gYearMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-whiteSpace-1, + which is derived by restriction of built-in type gYearMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-gYearMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-whiteSpace-1, + which is derived by restriction of built-in type gYearMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-gYearMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-whiteSpace-1, + which is derived by restriction of built-in type gYearMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-gYearMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-whiteSpace-1, + which is derived by restriction of built-in type gYearMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYearMonth-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-gYearMonth-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYearMonth-whiteSpace-1, + which is derived by restriction of built-in type gYearMonth + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYearMonth-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYearMonth-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-1, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-1, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-1, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-1, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-1, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-2, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2019 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-2, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2019 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-2, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2019 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-2, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2019 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-2, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2019 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-3, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2022 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-3, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2022 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-3, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2022 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-3, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2022 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-3, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2022 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-4, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1981 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-4, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1981 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-4, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1981 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-4, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1981 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-4, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 1981 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYear-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-minExclusive-5, + which is derived by restriction of built-in type gYear + by facet minExclusive with a value of: 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-1, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-1, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-1, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-1, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-1, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-2, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2024 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-2, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2024 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-2, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2024 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-2, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2024 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-2, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2024 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-3, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1979 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-3, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1979 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-3, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1979 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-3, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1979 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-3, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 1979 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-4, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-4, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-4, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-4, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-4, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2026 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYear-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-minInclusive-5, + which is derived by restriction of built-in type gYear + by facet minInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-1, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1971 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-2, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-2, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-2, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-2, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-2, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-3, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2020 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-3, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2020 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-3, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2020 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-3, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2020 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-3, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2020 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-4, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-4, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-4, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-4, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-4, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 1982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-5, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-5, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-5, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-5, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-gYear-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxExclusive-5, + which is derived by restriction of built-in type gYear + by facet maxExclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-1, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-2, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1970 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-3, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1983 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-3, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1983 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-3, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1983 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-3, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1983 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-3, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1983 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-4, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1984 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-4, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1984 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-4, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1984 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-4, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1984 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-4, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 1984 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-5, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-5, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-5, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-5, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-gYear-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-gYear-maxInclusive-5, + which is derived by restriction of built-in type gYear + by facet maxInclusive with a value of: 2030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-1-1" origin="NIST"><description> + File: NISTSchema-gYear-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-1, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2018 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-1-2" origin="NIST"><description> + File: NISTSchema-gYear-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-1, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2018 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-1-3" origin="NIST"><description> + File: NISTSchema-gYear-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-1, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2018 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-1-4" origin="NIST"><description> + File: NISTSchema-gYear-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-1, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2018 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-1-5" origin="NIST"><description> + File: NISTSchema-gYear-pattern-1.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-1, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2018 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-2-1" origin="NIST"><description> + File: NISTSchema-gYear-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-2, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1985 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-2-2" origin="NIST"><description> + File: NISTSchema-gYear-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-2, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1985 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-2-3" origin="NIST"><description> + File: NISTSchema-gYear-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-2, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1985 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-2-4" origin="NIST"><description> + File: NISTSchema-gYear-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-2, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1985 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-2-5" origin="NIST"><description> + File: NISTSchema-gYear-pattern-2.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-2, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1985 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-3-1" origin="NIST"><description> + File: NISTSchema-gYear-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-3, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2003 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-3-2" origin="NIST"><description> + File: NISTSchema-gYear-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-3, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2003 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-3-3" origin="NIST"><description> + File: NISTSchema-gYear-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-3, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2003 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-3-4" origin="NIST"><description> + File: NISTSchema-gYear-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-3, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2003 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-3-5" origin="NIST"><description> + File: NISTSchema-gYear-pattern-3.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-3, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 2003 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-4-1" origin="NIST"><description> + File: NISTSchema-gYear-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-4, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: \d\d\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-4-2" origin="NIST"><description> + File: NISTSchema-gYear-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-4, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: \d\d\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-4-3" origin="NIST"><description> + File: NISTSchema-gYear-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-4, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: \d\d\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-4-4" origin="NIST"><description> + File: NISTSchema-gYear-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-4, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: \d\d\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-4-5" origin="NIST"><description> + File: NISTSchema-gYear-pattern-4.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-4, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: \d\d\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-5-1" origin="NIST"><description> + File: NISTSchema-gYear-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-5, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1997 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-5-2" origin="NIST"><description> + File: NISTSchema-gYear-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-5, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1997 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-5-3" origin="NIST"><description> + File: NISTSchema-gYear-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-5, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1997 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-5-4" origin="NIST"><description> + File: NISTSchema-gYear-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-5, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1997 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-pattern-5-5" origin="NIST"><description> + File: NISTSchema-gYear-pattern-5.xsd + This schema specifies a datatype, NISTSchema-gYear-pattern-5, + which is derived by restriction of built-in type gYear + by facet pattern with a value of: 1997 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-1, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2022 + 1998 + 2016 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-1, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2022 + 1998 + 2016 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-1, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2022 + 1998 + 2016 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-1, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2022 + 1998 + 2016 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-1, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2022 + 1998 + 2016 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-2, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1981 + 1987 + 2007 + 2011 + 2000 + 2010 + 2020 + 2001 + 2029 + 1975 + 1981 + 1972 + 2020 + 1972 + 2010 + 2010 + 1990 + 2022 + 1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-2, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1981 + 1987 + 2007 + 2011 + 2000 + 2010 + 2020 + 2001 + 2029 + 1975 + 1981 + 1972 + 2020 + 1972 + 2010 + 2010 + 1990 + 2022 + 1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-2, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1981 + 1987 + 2007 + 2011 + 2000 + 2010 + 2020 + 2001 + 2029 + 1975 + 1981 + 1972 + 2020 + 1972 + 2010 + 2010 + 1990 + 2022 + 1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-2, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1981 + 1987 + 2007 + 2011 + 2000 + 2010 + 2020 + 2001 + 2029 + 1975 + 1981 + 1972 + 2020 + 1972 + 2010 + 2010 + 1990 + 2022 + 1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-2, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1981 + 1987 + 2007 + 2011 + 2000 + 2010 + 2020 + 2001 + 2029 + 1975 + 1981 + 1972 + 2020 + 1972 + 2010 + 2010 + 1990 + 2022 + 1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-3, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2017 + 2010 + 1983 + 1989 + 2005 + 2012 + 2003 + 2002 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-3, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2017 + 2010 + 1983 + 1989 + 2005 + 2012 + 2003 + 2002 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-3, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2017 + 2010 + 1983 + 1989 + 2005 + 2012 + 2003 + 2002 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-3, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2017 + 2010 + 1983 + 1989 + 2005 + 2012 + 2003 + 2002 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-3, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2017 + 2010 + 1983 + 1989 + 2005 + 2012 + 2003 + 2002 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-4, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1979 + 1985 + 2013 + 2010 + 1992 + 2011 + 1972 + 1979 + 2014 + 2028 + 2023 + 2024 + 2021 + 1972 + 2003 + 1990 + 2018 + 2026 + 1972 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-4, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1979 + 1985 + 2013 + 2010 + 1992 + 2011 + 1972 + 1979 + 2014 + 2028 + 2023 + 2024 + 2021 + 1972 + 2003 + 1990 + 2018 + 2026 + 1972 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-4, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1979 + 1985 + 2013 + 2010 + 1992 + 2011 + 1972 + 1979 + 2014 + 2028 + 2023 + 2024 + 2021 + 1972 + 2003 + 1990 + 2018 + 2026 + 1972 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-4, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1979 + 1985 + 2013 + 2010 + 1992 + 2011 + 1972 + 1979 + 2014 + 2028 + 2023 + 2024 + 2021 + 1972 + 2003 + 1990 + 2018 + 2026 + 1972 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-4, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 1979 + 1985 + 2013 + 2010 + 1992 + 2011 + 1972 + 1979 + 2014 + 2028 + 2023 + 2024 + 2021 + 1972 + 2003 + 1990 + 2018 + 2026 + 1972 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-5, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-5, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-5, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-5, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-gYear-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-gYear-enumeration-5, + which is derived by restriction of built-in type gYear + by facet enumeration with values of: + 2029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-gYear-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYear-whiteSpace-1, + which is derived by restriction of built-in type gYear + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-gYear-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYear-whiteSpace-1, + which is derived by restriction of built-in type gYear + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-gYear-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYear-whiteSpace-1, + which is derived by restriction of built-in type gYear + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-gYear-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYear-whiteSpace-1, + which is derived by restriction of built-in type gYear + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-gYear-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-gYear-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-gYear-whiteSpace-1, + which is derived by restriction of built-in type gYear + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-gYear-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-gYear-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-1, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-1, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-1, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-1, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-1, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-2, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 73 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-2, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 73 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-2, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 73 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-2, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 73 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-2, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 73 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-3, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-3, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-3, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-3, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-3, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 68 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-4, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-4, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-4, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-4, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-4, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-5, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-5, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-5, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-5, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-hexBinary-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-maxLength-5, + which is derived by restriction of built-in type hexBinary + by facet maxLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-1, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-1, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-1, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-1, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-1, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-2-1" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-2, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-2-2" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-2, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-2-3" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-2, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-2-4" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-2, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-2-5" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-2, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-3-1" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-3, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-3-2" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-3, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-3-3" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-3, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-3-4" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-3, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-3-5" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-3, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-4-1" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-4, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 65 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-4-2" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-4, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 65 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-4-3" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-4, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 65 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-4-4" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-4, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 65 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-4-5" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-4, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 65 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-5-1" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-5, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-5-2" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-5, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-5-3" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-5, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-5-4" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-5, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-minLength-5-5" origin="NIST"><description> + File: NISTSchema-hexBinary-minLength-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-minLength-5, + which is derived by restriction of built-in type hexBinary + by facet minLength with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-length-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-1, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-length-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-1, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-length-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-1, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-length-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-1, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-length-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-1, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-2-1" origin="NIST"><description> + File: NISTSchema-hexBinary-length-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-2, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-2-2" origin="NIST"><description> + File: NISTSchema-hexBinary-length-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-2, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-2-3" origin="NIST"><description> + File: NISTSchema-hexBinary-length-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-2, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-2-4" origin="NIST"><description> + File: NISTSchema-hexBinary-length-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-2, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-2-5" origin="NIST"><description> + File: NISTSchema-hexBinary-length-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-2, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-3-1" origin="NIST"><description> + File: NISTSchema-hexBinary-length-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-3, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-3-2" origin="NIST"><description> + File: NISTSchema-hexBinary-length-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-3, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-3-3" origin="NIST"><description> + File: NISTSchema-hexBinary-length-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-3, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-3-4" origin="NIST"><description> + File: NISTSchema-hexBinary-length-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-3, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-3-5" origin="NIST"><description> + File: NISTSchema-hexBinary-length-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-3, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-4-1" origin="NIST"><description> + File: NISTSchema-hexBinary-length-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-4, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 72 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-4-2" origin="NIST"><description> + File: NISTSchema-hexBinary-length-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-4, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 72 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-4-3" origin="NIST"><description> + File: NISTSchema-hexBinary-length-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-4, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 72 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-4-4" origin="NIST"><description> + File: NISTSchema-hexBinary-length-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-4, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 72 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-4-5" origin="NIST"><description> + File: NISTSchema-hexBinary-length-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-4, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 72 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-5-1" origin="NIST"><description> + File: NISTSchema-hexBinary-length-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-5, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-5-2" origin="NIST"><description> + File: NISTSchema-hexBinary-length-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-5, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-5-3" origin="NIST"><description> + File: NISTSchema-hexBinary-length-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-5, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-5-4" origin="NIST"><description> + File: NISTSchema-hexBinary-length-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-5, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-length-5-5" origin="NIST"><description> + File: NISTSchema-hexBinary-length-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-length-5, + which is derived by restriction of built-in type hexBinary + by facet length with a value of: 74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-1, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-1, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-1, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-1, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-1, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{8} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-2-1" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-2, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-2-2" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-2, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-2-3" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-2, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-2-4" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-2, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-2-5" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-2, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-3-1" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-3, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{44} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-3-2" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-3, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{44} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-3-3" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-3, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{44} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-3-4" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-3, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{44} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-3-5" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-3, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{44} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-4-1" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-4, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-4-2" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-4, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-4-3" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-4, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-4-4" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-4, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-4-5" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-4, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-5-1" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-5, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-5-2" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-5, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-5-3" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-5, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-5-4" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-5, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-pattern-5-5" origin="NIST"><description> + File: NISTSchema-hexBinary-pattern-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-pattern-5, + which is derived by restriction of built-in type hexBinary + by facet pattern with a value of: [0-9A-F]{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-1, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6c6379646569 + 70 + 67766969766a6b6a68 + 696372786c63706f6668627776677171 + 70687362626670647279657672796f62 + 61637461646b676e706c77636e6b66746e787879666f79726c6578646766646974696f656464697677726c756a676e6a7675 + 686e6c6c6f677072636f6e6d7763756e7271766d6f6c6a7971787062 + 6a6f727566696b647469716b646c676b6f736171716279736a70796f706c6e636a627479 + 6e627564626a76786c6e65766c76656e6671767563636363626b726279676b6a647469646e776464726263776a6c6f75637066736c69646d6e + 6678756573666d6f6879667675766d6c6578727577647661616461726d6f67646761726173766a6c6576776f6176796a + 6e6b666d696c6d636b6f61676662616871746d7169756a706163707276666a + 73787761637367737773786d67716a70696b696f637562767575687573666b74766c626f6c637874746866 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-1, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6c6379646569 + 70 + 67766969766a6b6a68 + 696372786c63706f6668627776677171 + 70687362626670647279657672796f62 + 61637461646b676e706c77636e6b66746e787879666f79726c6578646766646974696f656464697677726c756a676e6a7675 + 686e6c6c6f677072636f6e6d7763756e7271766d6f6c6a7971787062 + 6a6f727566696b647469716b646c676b6f736171716279736a70796f706c6e636a627479 + 6e627564626a76786c6e65766c76656e6671767563636363626b726279676b6a647469646e776464726263776a6c6f75637066736c69646d6e + 6678756573666d6f6879667675766d6c6578727577647661616461726d6f67646761726173766a6c6576776f6176796a + 6e6b666d696c6d636b6f61676662616871746d7169756a706163707276666a + 73787761637367737773786d67716a70696b696f637562767575687573666b74766c626f6c637874746866 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-1, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6c6379646569 + 70 + 67766969766a6b6a68 + 696372786c63706f6668627776677171 + 70687362626670647279657672796f62 + 61637461646b676e706c77636e6b66746e787879666f79726c6578646766646974696f656464697677726c756a676e6a7675 + 686e6c6c6f677072636f6e6d7763756e7271766d6f6c6a7971787062 + 6a6f727566696b647469716b646c676b6f736171716279736a70796f706c6e636a627479 + 6e627564626a76786c6e65766c76656e6671767563636363626b726279676b6a647469646e776464726263776a6c6f75637066736c69646d6e + 6678756573666d6f6879667675766d6c6578727577647661616461726d6f67646761726173766a6c6576776f6176796a + 6e6b666d696c6d636b6f61676662616871746d7169756a706163707276666a + 73787761637367737773786d67716a70696b696f637562767575687573666b74766c626f6c637874746866 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-1, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6c6379646569 + 70 + 67766969766a6b6a68 + 696372786c63706f6668627776677171 + 70687362626670647279657672796f62 + 61637461646b676e706c77636e6b66746e787879666f79726c6578646766646974696f656464697677726c756a676e6a7675 + 686e6c6c6f677072636f6e6d7763756e7271766d6f6c6a7971787062 + 6a6f727566696b647469716b646c676b6f736171716279736a70796f706c6e636a627479 + 6e627564626a76786c6e65766c76656e6671767563636363626b726279676b6a647469646e776464726263776a6c6f75637066736c69646d6e + 6678756573666d6f6879667675766d6c6578727577647661616461726d6f67646761726173766a6c6576776f6176796a + 6e6b666d696c6d636b6f61676662616871746d7169756a706163707276666a + 73787761637367737773786d67716a70696b696f637562767575687573666b74766c626f6c637874746866 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-1, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6c6379646569 + 70 + 67766969766a6b6a68 + 696372786c63706f6668627776677171 + 70687362626670647279657672796f62 + 61637461646b676e706c77636e6b66746e787879666f79726c6578646766646974696f656464697677726c756a676e6a7675 + 686e6c6c6f677072636f6e6d7763756e7271766d6f6c6a7971787062 + 6a6f727566696b647469716b646c676b6f736171716279736a70796f706c6e636a627479 + 6e627564626a76786c6e65766c76656e6671767563636363626b726279676b6a647469646e776464726263776a6c6f75637066736c69646d6e + 6678756573666d6f6879667675766d6c6578727577647661616461726d6f67646761726173766a6c6576776f6176796a + 6e6b666d696c6d636b6f61676662616871746d7169756a706163707276666a + 73787761637367737773786d67716a70696b696f637562767575687573666b74766c626f6c637874746866 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-2, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 746961796c6f6d69706b6b6d7473676a6f687678796367776269 + 64776b676d796661656f6f666d626363716c636a6b61706563686372696f756d6b776e6c6766776963636375676664686a79746b6a6c7671736e716578796d797570667274 + 736d657974616d6763686a6e6b + 65667165777074736b73766c6c767869706869746c626e65707369666d74706e70696c776a63636d676179726569736f62757868756d7367 + 746c736d77646f6a6d67686e6c6f6e7564 + 78637574767162716d777161667579656e62666b + 6376787970696276736465716468717461616d737576766c777869707464667874 + 66616a6467697561736f78666e787366626a6b74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-2, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 746961796c6f6d69706b6b6d7473676a6f687678796367776269 + 64776b676d796661656f6f666d626363716c636a6b61706563686372696f756d6b776e6c6766776963636375676664686a79746b6a6c7671736e716578796d797570667274 + 736d657974616d6763686a6e6b + 65667165777074736b73766c6c767869706869746c626e65707369666d74706e70696c776a63636d676179726569736f62757868756d7367 + 746c736d77646f6a6d67686e6c6f6e7564 + 78637574767162716d777161667579656e62666b + 6376787970696276736465716468717461616d737576766c777869707464667874 + 66616a6467697561736f78666e787366626a6b74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-2, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 746961796c6f6d69706b6b6d7473676a6f687678796367776269 + 64776b676d796661656f6f666d626363716c636a6b61706563686372696f756d6b776e6c6766776963636375676664686a79746b6a6c7671736e716578796d797570667274 + 736d657974616d6763686a6e6b + 65667165777074736b73766c6c767869706869746c626e65707369666d74706e70696c776a63636d676179726569736f62757868756d7367 + 746c736d77646f6a6d67686e6c6f6e7564 + 78637574767162716d777161667579656e62666b + 6376787970696276736465716468717461616d737576766c777869707464667874 + 66616a6467697561736f78666e787366626a6b74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-2, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 746961796c6f6d69706b6b6d7473676a6f687678796367776269 + 64776b676d796661656f6f666d626363716c636a6b61706563686372696f756d6b776e6c6766776963636375676664686a79746b6a6c7671736e716578796d797570667274 + 736d657974616d6763686a6e6b + 65667165777074736b73766c6c767869706869746c626e65707369666d74706e70696c776a63636d676179726569736f62757868756d7367 + 746c736d77646f6a6d67686e6c6f6e7564 + 78637574767162716d777161667579656e62666b + 6376787970696276736465716468717461616d737576766c777869707464667874 + 66616a6467697561736f78666e787366626a6b74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-2, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 746961796c6f6d69706b6b6d7473676a6f687678796367776269 + 64776b676d796661656f6f666d626363716c636a6b61706563686372696f756d6b776e6c6766776963636375676664686a79746b6a6c7671736e716578796d797570667274 + 736d657974616d6763686a6e6b + 65667165777074736b73766c6c767869706869746c626e65707369666d74706e70696c776a63636d676179726569736f62757868756d7367 + 746c736d77646f6a6d67686e6c6f6e7564 + 78637574767162716d777161667579656e62666b + 6376787970696276736465716468717461616d737576766c777869707464667874 + 66616a6467697561736f78666e787366626a6b74 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-3, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6975626462796e6f6b7170737778656a72796b67776a7469737676707179626c616b6c686a6c7472797964616c726b6f67746b6a6d737475717975 + 686e63696c62697172626969697767767969626f6272 + 776171787374657966766171706165666c6a62627277646c676f716f6a776e71796a666463796b696771756a726977706f74696878627773796862657278 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-3, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6975626462796e6f6b7170737778656a72796b67776a7469737676707179626c616b6c686a6c7472797964616c726b6f67746b6a6d737475717975 + 686e63696c62697172626969697767767969626f6272 + 776171787374657966766171706165666c6a62627277646c676f716f6a776e71796a666463796b696771756a726977706f74696878627773796862657278 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-3, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6975626462796e6f6b7170737778656a72796b67776a7469737676707179626c616b6c686a6c7472797964616c726b6f67746b6a6d737475717975 + 686e63696c62697172626969697767767969626f6272 + 776171787374657966766171706165666c6a62627277646c676f716f6a776e71796a666463796b696771756a726977706f74696878627773796862657278 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-3, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6975626462796e6f6b7170737778656a72796b67776a7469737676707179626c616b6c686a6c7472797964616c726b6f67746b6a6d737475717975 + 686e63696c62697172626969697767767969626f6272 + 776171787374657966766171706165666c6a62627277646c676f716f6a776e71796a666463796b696771756a726977706f74696878627773796862657278 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-3, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6975626462796e6f6b7170737778656a72796b67776a7469737676707179626c616b6c686a6c7472797964616c726b6f67746b6a6d737475717975 + 686e63696c62697172626969697767767969626f6272 + 776171787374657966766171706165666c6a62627277646c676f716f6a776e71796a666463796b696771756a726977706f74696878627773796862657278 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-4, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 67646261757864686c6b7168616f796d666379647463716b + 6372656f7562637179636363726d + 6d746574707175676b636b72756d7867716773746f61676b64657971686a6273656862786d79626e686f717978657274767864657374656c7271676275696d73716f676870 + 636f787462717462737872746c73647679667876646a6e65746d6672696f766d77746662726872666876646777696f75706d6c676d63656e6f7261786d7869796a6e657761 + 787266616970726c6b6c716973797868627171766d706867626170626a656b6d7866796c76747476776c6b756b6e6877646c74696d66797570656f7572706e79626d666d + 7572786e6d7973696169656976776a686262626a6577 + 676d6c6d696b + 7078656e68766777786c6c6e7278656975616f7677726168707374667373 + 7868 + 616b6b667778716c6a6b676a786d6f6a7071766d776f73716171726a7663726c6f6372636162647972796765786e746c6a6179676e707068666c6f6a7375796c63776f + 64736e797564666b6c7077627777697375637471696c776e6e626763747066786b6b65647961707975656578 + 776e726e73776c6965656f6a63726366656470716877617776796c616e6f6e717574646f6e74786873666b616b757875 + 676b686c6f766f6c6364786f69776b627268646f736965716c616c6b646770736262677966636b6172666b6171766e6864716a777978676a7761766177756a626570 + 6e63617077656978 + 726966766567666d706966756e786f706a6e736765736f65616a72767269676874656879736869786a766c6167717468786f61676b71676963 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-4, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 67646261757864686c6b7168616f796d666379647463716b + 6372656f7562637179636363726d + 6d746574707175676b636b72756d7867716773746f61676b64657971686a6273656862786d79626e686f717978657274767864657374656c7271676275696d73716f676870 + 636f787462717462737872746c73647679667876646a6e65746d6672696f766d77746662726872666876646777696f75706d6c676d63656e6f7261786d7869796a6e657761 + 787266616970726c6b6c716973797868627171766d706867626170626a656b6d7866796c76747476776c6b756b6e6877646c74696d66797570656f7572706e79626d666d + 7572786e6d7973696169656976776a686262626a6577 + 676d6c6d696b + 7078656e68766777786c6c6e7278656975616f7677726168707374667373 + 7868 + 616b6b667778716c6a6b676a786d6f6a7071766d776f73716171726a7663726c6f6372636162647972796765786e746c6a6179676e707068666c6f6a7375796c63776f + 64736e797564666b6c7077627777697375637471696c776e6e626763747066786b6b65647961707975656578 + 776e726e73776c6965656f6a63726366656470716877617776796c616e6f6e717574646f6e74786873666b616b757875 + 676b686c6f766f6c6364786f69776b627268646f736965716c616c6b646770736262677966636b6172666b6171766e6864716a777978676a7761766177756a626570 + 6e63617077656978 + 726966766567666d706966756e786f706a6e736765736f65616a72767269676874656879736869786a766c6167717468786f61676b71676963 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-4, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 67646261757864686c6b7168616f796d666379647463716b + 6372656f7562637179636363726d + 6d746574707175676b636b72756d7867716773746f61676b64657971686a6273656862786d79626e686f717978657274767864657374656c7271676275696d73716f676870 + 636f787462717462737872746c73647679667876646a6e65746d6672696f766d77746662726872666876646777696f75706d6c676d63656e6f7261786d7869796a6e657761 + 787266616970726c6b6c716973797868627171766d706867626170626a656b6d7866796c76747476776c6b756b6e6877646c74696d66797570656f7572706e79626d666d + 7572786e6d7973696169656976776a686262626a6577 + 676d6c6d696b + 7078656e68766777786c6c6e7278656975616f7677726168707374667373 + 7868 + 616b6b667778716c6a6b676a786d6f6a7071766d776f73716171726a7663726c6f6372636162647972796765786e746c6a6179676e707068666c6f6a7375796c63776f + 64736e797564666b6c7077627777697375637471696c776e6e626763747066786b6b65647961707975656578 + 776e726e73776c6965656f6a63726366656470716877617776796c616e6f6e717574646f6e74786873666b616b757875 + 676b686c6f766f6c6364786f69776b627268646f736965716c616c6b646770736262677966636b6172666b6171766e6864716a777978676a7761766177756a626570 + 6e63617077656978 + 726966766567666d706966756e786f706a6e736765736f65616a72767269676874656879736869786a766c6167717468786f61676b71676963 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-4, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 67646261757864686c6b7168616f796d666379647463716b + 6372656f7562637179636363726d + 6d746574707175676b636b72756d7867716773746f61676b64657971686a6273656862786d79626e686f717978657274767864657374656c7271676275696d73716f676870 + 636f787462717462737872746c73647679667876646a6e65746d6672696f766d77746662726872666876646777696f75706d6c676d63656e6f7261786d7869796a6e657761 + 787266616970726c6b6c716973797868627171766d706867626170626a656b6d7866796c76747476776c6b756b6e6877646c74696d66797570656f7572706e79626d666d + 7572786e6d7973696169656976776a686262626a6577 + 676d6c6d696b + 7078656e68766777786c6c6e7278656975616f7677726168707374667373 + 7868 + 616b6b667778716c6a6b676a786d6f6a7071766d776f73716171726a7663726c6f6372636162647972796765786e746c6a6179676e707068666c6f6a7375796c63776f + 64736e797564666b6c7077627777697375637471696c776e6e626763747066786b6b65647961707975656578 + 776e726e73776c6965656f6a63726366656470716877617776796c616e6f6e717574646f6e74786873666b616b757875 + 676b686c6f766f6c6364786f69776b627268646f736965716c616c6b646770736262677966636b6172666b6171766e6864716a777978676a7761766177756a626570 + 6e63617077656978 + 726966766567666d706966756e786f706a6e736765736f65616a72767269676874656879736869786a766c6167717468786f61676b71676963 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-4, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 67646261757864686c6b7168616f796d666379647463716b + 6372656f7562637179636363726d + 6d746574707175676b636b72756d7867716773746f61676b64657971686a6273656862786d79626e686f717978657274767864657374656c7271676275696d73716f676870 + 636f787462717462737872746c73647679667876646a6e65746d6672696f766d77746662726872666876646777696f75706d6c676d63656e6f7261786d7869796a6e657761 + 787266616970726c6b6c716973797868627171766d706867626170626a656b6d7866796c76747476776c6b756b6e6877646c74696d66797570656f7572706e79626d666d + 7572786e6d7973696169656976776a686262626a6577 + 676d6c6d696b + 7078656e68766777786c6c6e7278656975616f7677726168707374667373 + 7868 + 616b6b667778716c6a6b676a786d6f6a7071766d776f73716171726a7663726c6f6372636162647972796765786e746c6a6179676e707068666c6f6a7375796c63776f + 64736e797564666b6c7077627777697375637471696c776e6e626763747066786b6b65647961707975656578 + 776e726e73776c6965656f6a63726366656470716877617776796c616e6f6e717574646f6e74786873666b616b757875 + 676b686c6f766f6c6364786f69776b627268646f736965716c616c6b646770736262677966636b6172666b6171766e6864716a777978676a7761766177756a626570 + 6e63617077656978 + 726966766567666d706966756e786f706a6e736765736f65616a72767269676874656879736869786a766c6167717468786f61676b71676963 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-5, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6f6c676c6f76776b786179707765686b686e7876677662746a6a716c626e716464676e666965 + 68716b6b74786b796e6e736b6b706377766b64776f71786a6b626b726a616a626f6772647677787379736e6d6969677078626665696672706d6f71756e746d797364676f746261 + 79756f626968667573706b6771786b7471746d74686274676268767767616c746b726d756b796a7162706364706463646b7178 + 6970757068726d616f686b75696d776a76787471736376626c62656c79727965626468 + 64636a616c7578706566 + 656678617177 + 6263656677627268786c65706b616a786d707779656f756c6c64616573676e70756d69766171626272637864616d73716462756e6c6a626c7379626e61646b726e6773617274736d + 6b6763746370677363696a79776d + 746b6b6e6b627869627076796f6d79796770676f70746e74626b76736f6d6a6b6a61726279756d + 6f61656668626477727461736d7665716d65786e706c7866747268746e6c + 67726c786866 + 6f637071717467766d6f757271626c73726b6e + 616c6976616d6d736365796c746e78626c79626e67687874697575776c6677626273 + 71796365686a72636c726667686d63706c6b6561726573716b62626166636365616c767663616c61666b6c76786c7579706b6777646b6e6579716877647261716479756775 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-5, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6f6c676c6f76776b786179707765686b686e7876677662746a6a716c626e716464676e666965 + 68716b6b74786b796e6e736b6b706377766b64776f71786a6b626b726a616a626f6772647677787379736e6d6969677078626665696672706d6f71756e746d797364676f746261 + 79756f626968667573706b6771786b7471746d74686274676268767767616c746b726d756b796a7162706364706463646b7178 + 6970757068726d616f686b75696d776a76787471736376626c62656c79727965626468 + 64636a616c7578706566 + 656678617177 + 6263656677627268786c65706b616a786d707779656f756c6c64616573676e70756d69766171626272637864616d73716462756e6c6a626c7379626e61646b726e6773617274736d + 6b6763746370677363696a79776d + 746b6b6e6b627869627076796f6d79796770676f70746e74626b76736f6d6a6b6a61726279756d + 6f61656668626477727461736d7665716d65786e706c7866747268746e6c + 67726c786866 + 6f637071717467766d6f757271626c73726b6e + 616c6976616d6d736365796c746e78626c79626e67687874697575776c6677626273 + 71796365686a72636c726667686d63706c6b6561726573716b62626166636365616c767663616c61666b6c76786c7579706b6777646b6e6579716877647261716479756775 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-5, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6f6c676c6f76776b786179707765686b686e7876677662746a6a716c626e716464676e666965 + 68716b6b74786b796e6e736b6b706377766b64776f71786a6b626b726a616a626f6772647677787379736e6d6969677078626665696672706d6f71756e746d797364676f746261 + 79756f626968667573706b6771786b7471746d74686274676268767767616c746b726d756b796a7162706364706463646b7178 + 6970757068726d616f686b75696d776a76787471736376626c62656c79727965626468 + 64636a616c7578706566 + 656678617177 + 6263656677627268786c65706b616a786d707779656f756c6c64616573676e70756d69766171626272637864616d73716462756e6c6a626c7379626e61646b726e6773617274736d + 6b6763746370677363696a79776d + 746b6b6e6b627869627076796f6d79796770676f70746e74626b76736f6d6a6b6a61726279756d + 6f61656668626477727461736d7665716d65786e706c7866747268746e6c + 67726c786866 + 6f637071717467766d6f757271626c73726b6e + 616c6976616d6d736365796c746e78626c79626e67687874697575776c6677626273 + 71796365686a72636c726667686d63706c6b6561726573716b62626166636365616c767663616c61666b6c76786c7579706b6777646b6e6579716877647261716479756775 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-5, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6f6c676c6f76776b786179707765686b686e7876677662746a6a716c626e716464676e666965 + 68716b6b74786b796e6e736b6b706377766b64776f71786a6b626b726a616a626f6772647677787379736e6d6969677078626665696672706d6f71756e746d797364676f746261 + 79756f626968667573706b6771786b7471746d74686274676268767767616c746b726d756b796a7162706364706463646b7178 + 6970757068726d616f686b75696d776a76787471736376626c62656c79727965626468 + 64636a616c7578706566 + 656678617177 + 6263656677627268786c65706b616a786d707779656f756c6c64616573676e70756d69766171626272637864616d73716462756e6c6a626c7379626e61646b726e6773617274736d + 6b6763746370677363696a79776d + 746b6b6e6b627869627076796f6d79796770676f70746e74626b76736f6d6a6b6a61726279756d + 6f61656668626477727461736d7665716d65786e706c7866747268746e6c + 67726c786866 + 6f637071717467766d6f757271626c73726b6e + 616c6976616d6d736365796c746e78626c79626e67687874697575776c6677626273 + 71796365686a72636c726667686d63706c6b6561726573716b62626166636365616c767663616c61666b6c76786c7579706b6777646b6e6579716877647261716479756775 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-hexBinary-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-hexBinary-enumeration-5, + which is derived by restriction of built-in type hexBinary + by facet enumeration with values of: + 6f6c676c6f76776b786179707765686b686e7876677662746a6a716c626e716464676e666965 + 68716b6b74786b796e6e736b6b706377766b64776f71786a6b626b726a616a626f6772647677787379736e6d6969677078626665696672706d6f71756e746d797364676f746261 + 79756f626968667573706b6771786b7471746d74686274676268767767616c746b726d756b796a7162706364706463646b7178 + 6970757068726d616f686b75696d776a76787471736376626c62656c79727965626468 + 64636a616c7578706566 + 656678617177 + 6263656677627268786c65706b616a786d707779656f756c6c64616573676e70756d69766171626272637864616d73716462756e6c6a626c7379626e61646b726e6773617274736d + 6b6763746370677363696a79776d + 746b6b6e6b627869627076796f6d79796770676f70746e74626b76736f6d6a6b6a61726279756d + 6f61656668626477727461736d7665716d65786e706c7866747268746e6c + 67726c786866 + 6f637071717467766d6f757271626c73726b6e + 616c6976616d6d736365796c746e78626c79626e67687874697575776c6677626273 + 71796365686a72636c726667686d63706c6b6561726573716b62626166636365616c767663616c61666b6c76786c7579706b6777646b6e6579716877647261716479756775 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-hexBinary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-whiteSpace-1, + which is derived by restriction of built-in type hexBinary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-hexBinary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-whiteSpace-1, + which is derived by restriction of built-in type hexBinary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-hexBinary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-whiteSpace-1, + which is derived by restriction of built-in type hexBinary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-hexBinary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-whiteSpace-1, + which is derived by restriction of built-in type hexBinary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-hexBinary-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-hexBinary-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-hexBinary-whiteSpace-1, + which is derived by restriction of built-in type hexBinary + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-hexBinary-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-hexBinary-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-ID-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-1, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-ID-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-1, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-ID-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-1, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-ID-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-1, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-ID-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-1, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-ID-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-2, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-ID-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-2, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-ID-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-2, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-ID-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-2, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-ID-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-2, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-ID-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-3, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-ID-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-3, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-ID-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-3, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-ID-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-3, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-ID-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-3, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-ID-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-4, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-ID-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-4, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-ID-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-4, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-ID-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-4, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-ID-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-4, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-ID-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-5, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-ID-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-5, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-ID-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-5, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-ID-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-5, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-ID-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-maxLength-5, + which is derived by restriction of built-in type ID + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-1-1" origin="NIST"><description> + File: NISTSchema-ID-minLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-1, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-1-2" origin="NIST"><description> + File: NISTSchema-ID-minLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-1, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-1-3" origin="NIST"><description> + File: NISTSchema-ID-minLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-1, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-1-4" origin="NIST"><description> + File: NISTSchema-ID-minLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-1, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-1-5" origin="NIST"><description> + File: NISTSchema-ID-minLength-1.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-1, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-2-1" origin="NIST"><description> + File: NISTSchema-ID-minLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-2, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-2-2" origin="NIST"><description> + File: NISTSchema-ID-minLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-2, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-2-3" origin="NIST"><description> + File: NISTSchema-ID-minLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-2, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-2-4" origin="NIST"><description> + File: NISTSchema-ID-minLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-2, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-2-5" origin="NIST"><description> + File: NISTSchema-ID-minLength-2.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-2, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-3-1" origin="NIST"><description> + File: NISTSchema-ID-minLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-3, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-3-2" origin="NIST"><description> + File: NISTSchema-ID-minLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-3, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-3-3" origin="NIST"><description> + File: NISTSchema-ID-minLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-3, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-3-4" origin="NIST"><description> + File: NISTSchema-ID-minLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-3, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-3-5" origin="NIST"><description> + File: NISTSchema-ID-minLength-3.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-3, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-4-1" origin="NIST"><description> + File: NISTSchema-ID-minLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-4, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-4-2" origin="NIST"><description> + File: NISTSchema-ID-minLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-4, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-4-3" origin="NIST"><description> + File: NISTSchema-ID-minLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-4, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-4-4" origin="NIST"><description> + File: NISTSchema-ID-minLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-4, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-4-5" origin="NIST"><description> + File: NISTSchema-ID-minLength-4.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-4, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-5-1" origin="NIST"><description> + File: NISTSchema-ID-minLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-5, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-5-2" origin="NIST"><description> + File: NISTSchema-ID-minLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-5, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-5-3" origin="NIST"><description> + File: NISTSchema-ID-minLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-5, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-5-4" origin="NIST"><description> + File: NISTSchema-ID-minLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-5, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-minLength-5-5" origin="NIST"><description> + File: NISTSchema-ID-minLength-5.xsd + This schema specifies a datatype, NISTSchema-ID-minLength-5, + which is derived by restriction of built-in type ID + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-1-1" origin="NIST"><description> + File: NISTSchema-ID-length-1.xsd + This schema specifies a datatype, NISTSchema-ID-length-1, + which is derived by restriction of built-in type ID + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-1-2" origin="NIST"><description> + File: NISTSchema-ID-length-1.xsd + This schema specifies a datatype, NISTSchema-ID-length-1, + which is derived by restriction of built-in type ID + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-1-3" origin="NIST"><description> + File: NISTSchema-ID-length-1.xsd + This schema specifies a datatype, NISTSchema-ID-length-1, + which is derived by restriction of built-in type ID + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-1-4" origin="NIST"><description> + File: NISTSchema-ID-length-1.xsd + This schema specifies a datatype, NISTSchema-ID-length-1, + which is derived by restriction of built-in type ID + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-1-5" origin="NIST"><description> + File: NISTSchema-ID-length-1.xsd + This schema specifies a datatype, NISTSchema-ID-length-1, + which is derived by restriction of built-in type ID + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-2-1" origin="NIST"><description> + File: NISTSchema-ID-length-2.xsd + This schema specifies a datatype, NISTSchema-ID-length-2, + which is derived by restriction of built-in type ID + by facet length with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-2-2" origin="NIST"><description> + File: NISTSchema-ID-length-2.xsd + This schema specifies a datatype, NISTSchema-ID-length-2, + which is derived by restriction of built-in type ID + by facet length with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-2-3" origin="NIST"><description> + File: NISTSchema-ID-length-2.xsd + This schema specifies a datatype, NISTSchema-ID-length-2, + which is derived by restriction of built-in type ID + by facet length with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-2-4" origin="NIST"><description> + File: NISTSchema-ID-length-2.xsd + This schema specifies a datatype, NISTSchema-ID-length-2, + which is derived by restriction of built-in type ID + by facet length with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-2-5" origin="NIST"><description> + File: NISTSchema-ID-length-2.xsd + This schema specifies a datatype, NISTSchema-ID-length-2, + which is derived by restriction of built-in type ID + by facet length with a value of: 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-3-1" origin="NIST"><description> + File: NISTSchema-ID-length-3.xsd + This schema specifies a datatype, NISTSchema-ID-length-3, + which is derived by restriction of built-in type ID + by facet length with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-3-2" origin="NIST"><description> + File: NISTSchema-ID-length-3.xsd + This schema specifies a datatype, NISTSchema-ID-length-3, + which is derived by restriction of built-in type ID + by facet length with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-3-3" origin="NIST"><description> + File: NISTSchema-ID-length-3.xsd + This schema specifies a datatype, NISTSchema-ID-length-3, + which is derived by restriction of built-in type ID + by facet length with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-3-4" origin="NIST"><description> + File: NISTSchema-ID-length-3.xsd + This schema specifies a datatype, NISTSchema-ID-length-3, + which is derived by restriction of built-in type ID + by facet length with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-3-5" origin="NIST"><description> + File: NISTSchema-ID-length-3.xsd + This schema specifies a datatype, NISTSchema-ID-length-3, + which is derived by restriction of built-in type ID + by facet length with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-4-1" origin="NIST"><description> + File: NISTSchema-ID-length-4.xsd + This schema specifies a datatype, NISTSchema-ID-length-4, + which is derived by restriction of built-in type ID + by facet length with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-4-2" origin="NIST"><description> + File: NISTSchema-ID-length-4.xsd + This schema specifies a datatype, NISTSchema-ID-length-4, + which is derived by restriction of built-in type ID + by facet length with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-4-3" origin="NIST"><description> + File: NISTSchema-ID-length-4.xsd + This schema specifies a datatype, NISTSchema-ID-length-4, + which is derived by restriction of built-in type ID + by facet length with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-4-4" origin="NIST"><description> + File: NISTSchema-ID-length-4.xsd + This schema specifies a datatype, NISTSchema-ID-length-4, + which is derived by restriction of built-in type ID + by facet length with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-4-5" origin="NIST"><description> + File: NISTSchema-ID-length-4.xsd + This schema specifies a datatype, NISTSchema-ID-length-4, + which is derived by restriction of built-in type ID + by facet length with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-5-1" origin="NIST"><description> + File: NISTSchema-ID-length-5.xsd + This schema specifies a datatype, NISTSchema-ID-length-5, + which is derived by restriction of built-in type ID + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-5-2" origin="NIST"><description> + File: NISTSchema-ID-length-5.xsd + This schema specifies a datatype, NISTSchema-ID-length-5, + which is derived by restriction of built-in type ID + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-5-3" origin="NIST"><description> + File: NISTSchema-ID-length-5.xsd + This schema specifies a datatype, NISTSchema-ID-length-5, + which is derived by restriction of built-in type ID + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-5-4" origin="NIST"><description> + File: NISTSchema-ID-length-5.xsd + This schema specifies a datatype, NISTSchema-ID-length-5, + which is derived by restriction of built-in type ID + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-length-5-5" origin="NIST"><description> + File: NISTSchema-ID-length-5.xsd + This schema specifies a datatype, NISTSchema-ID-length-5, + which is derived by restriction of built-in type ID + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-1-1" origin="NIST"><description> + File: NISTSchema-ID-pattern-1.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-1, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-1-2" origin="NIST"><description> + File: NISTSchema-ID-pattern-1.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-1, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-1-3" origin="NIST"><description> + File: NISTSchema-ID-pattern-1.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-1, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-1-4" origin="NIST"><description> + File: NISTSchema-ID-pattern-1.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-1, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-1-5" origin="NIST"><description> + File: NISTSchema-ID-pattern-1.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-1, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{50} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-2-1" origin="NIST"><description> + File: NISTSchema-ID-pattern-2.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-2, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-2-2" origin="NIST"><description> + File: NISTSchema-ID-pattern-2.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-2, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-2-3" origin="NIST"><description> + File: NISTSchema-ID-pattern-2.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-2, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-2-4" origin="NIST"><description> + File: NISTSchema-ID-pattern-2.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-2, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-2-5" origin="NIST"><description> + File: NISTSchema-ID-pattern-2.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-2, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-3-1" origin="NIST"><description> + File: NISTSchema-ID-pattern-3.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-3, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{14} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-3-2" origin="NIST"><description> + File: NISTSchema-ID-pattern-3.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-3, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{14} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-3-3" origin="NIST"><description> + File: NISTSchema-ID-pattern-3.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-3, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{14} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-3-4" origin="NIST"><description> + File: NISTSchema-ID-pattern-3.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-3, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{14} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-3-5" origin="NIST"><description> + File: NISTSchema-ID-pattern-3.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-3, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{14} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-4-1" origin="NIST"><description> + File: NISTSchema-ID-pattern-4.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-4, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-4-2" origin="NIST"><description> + File: NISTSchema-ID-pattern-4.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-4, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-4-3" origin="NIST"><description> + File: NISTSchema-ID-pattern-4.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-4, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-4-4" origin="NIST"><description> + File: NISTSchema-ID-pattern-4.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-4, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-4-5" origin="NIST"><description> + File: NISTSchema-ID-pattern-4.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-4, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-5-1" origin="NIST"><description> + File: NISTSchema-ID-pattern-5.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-5, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{45} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-5-2" origin="NIST"><description> + File: NISTSchema-ID-pattern-5.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-5, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{45} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-5-3" origin="NIST"><description> + File: NISTSchema-ID-pattern-5.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-5, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{45} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-5-4" origin="NIST"><description> + File: NISTSchema-ID-pattern-5.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-5, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{45} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-pattern-5-5" origin="NIST"><description> + File: NISTSchema-ID-pattern-5.xsd + This schema specifies a datatype, NISTSchema-ID-pattern-5, + which is derived by restriction of built-in type ID + by facet pattern with a value of: \i\c{45} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-ID-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-1, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _portable_computers_computers_ + jled_wide-f + ytools + _computers_of-to-processes.quality-testing.by_aroun + _software.of_quality.due_the-the_are- + _registry_popular-between-development_will_must_in + _and.and_to_vertical_from.that.and.to-manipulate.virtually- + bof-signatures_this_define-achieved_electronic_is.without_bot + fdefine-and-filte + _the_advanced_tremendous-5_find_large.envi + _for-en + fvertical.and.neutral-of + _efforts-among.no.transforming.advent.the.related_will.part + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-ID-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-1, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _portable_computers_computers_ + jled_wide-f + ytools + _computers_of-to-processes.quality-testing.by_aroun + _software.of_quality.due_the-the_are- + _registry_popular-between-development_will_must_in + _and.and_to_vertical_from.that.and.to-manipulate.virtually- + bof-signatures_this_define-achieved_electronic_is.without_bot + fdefine-and-filte + _the_advanced_tremendous-5_find_large.envi + _for-en + fvertical.and.neutral-of + _efforts-among.no.transforming.advent.the.related_will.part + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-ID-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-1, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _portable_computers_computers_ + jled_wide-f + ytools + _computers_of-to-processes.quality-testing.by_aroun + _software.of_quality.due_the-the_are- + _registry_popular-between-development_will_must_in + _and.and_to_vertical_from.that.and.to-manipulate.virtually- + bof-signatures_this_define-achieved_electronic_is.without_bot + fdefine-and-filte + _the_advanced_tremendous-5_find_large.envi + _for-en + fvertical.and.neutral-of + _efforts-among.no.transforming.advent.the.related_will.part + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-ID-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-1, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _portable_computers_computers_ + jled_wide-f + ytools + _computers_of-to-processes.quality-testing.by_aroun + _software.of_quality.due_the-the_are- + _registry_popular-between-development_will_must_in + _and.and_to_vertical_from.that.and.to-manipulate.virtually- + bof-signatures_this_define-achieved_electronic_is.without_bot + fdefine-and-filte + _the_advanced_tremendous-5_find_large.envi + _for-en + fvertical.and.neutral-of + _efforts-among.no.transforming.advent.the.related_will.part + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-ID-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-1, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _portable_computers_computers_ + jled_wide-f + ytools + _computers_of-to-processes.quality-testing.by_aroun + _software.of_quality.due_the-the_are- + _registry_popular-between-development_will_must_in + _and.and_to_vertical_from.that.and.to-manipulate.virtually- + bof-signatures_this_define-achieved_electronic_is.without_bot + fdefine-and-filte + _the_advanced_tremendous-5_find_large.envi + _for-en + fvertical.and.neutral-of + _efforts-among.no.transforming.advent.the.related_will.part + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-ID-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-2, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + olanguage_networking_world + _next-tools.has.will-pro + _bee + ralike-including-the.and-such-and_for-these.formed.provided-mult + iquality-as_for_the-effectively. + vreference.partic + wincluded-systems_s.wa + _draft.from-conf + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-ID-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-2, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + olanguage_networking_world + _next-tools.has.will-pro + _bee + ralike-including-the.and-such-and_for-these.formed.provided-mult + iquality-as_for_the-effectively. + vreference.partic + wincluded-systems_s.wa + _draft.from-conf + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-ID-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-2, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + olanguage_networking_world + _next-tools.has.will-pro + _bee + ralike-including-the.and-such-and_for-these.formed.provided-mult + iquality-as_for_the-effectively. + vreference.partic + wincluded-systems_s.wa + _draft.from-conf + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-ID-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-2, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + olanguage_networking_world + _next-tools.has.will-pro + _bee + ralike-including-the.and-such-and_for-these.formed.provided-mult + iquality-as_for_the-effectively. + vreference.partic + wincluded-systems_s.wa + _draft.from-conf + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-ID-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-2, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + olanguage_networking_world + _next-tools.has.will-pro + _bee + ralike-including-the.and-such-and_for-these.formed.provided-mult + iquality-as_for_the-effectively. + vreference.partic + wincluded-systems_s.wa + _draft.from-conf + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-ID-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-3, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + uspecification-a_the-to.discussions-automated_of_com + _a.known_and.reference.c + lof_any_stakeholders-the.computing_of-that_b + sdue_computing-as.significant_all.further_projector_ + _of.also.for-computer-transacti + _lang + _electronic.provides-used-looking_them.prin + kfiles.enough_unbiased.and.other.and-the_capabilities-leadershi + jthe-for_as-database.their-a-enabling.2000.the- + _object.graphics_early-the_will_becoming_a_to + _tools.the.busine + _data.d + sthe-ye + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-ID-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-3, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + uspecification-a_the-to.discussions-automated_of_com + _a.known_and.reference.c + lof_any_stakeholders-the.computing_of-that_b + sdue_computing-as.significant_all.further_projector_ + _of.also.for-computer-transacti + _lang + _electronic.provides-used-looking_them.prin + kfiles.enough_unbiased.and.other.and-the_capabilities-leadershi + jthe-for_as-database.their-a-enabling.2000.the- + _object.graphics_early-the_will_becoming_a_to + _tools.the.busine + _data.d + sthe-ye + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-ID-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-3, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + uspecification-a_the-to.discussions-automated_of_com + _a.known_and.reference.c + lof_any_stakeholders-the.computing_of-that_b + sdue_computing-as.significant_all.further_projector_ + _of.also.for-computer-transacti + _lang + _electronic.provides-used-looking_them.prin + kfiles.enough_unbiased.and.other.and-the_capabilities-leadershi + jthe-for_as-database.their-a-enabling.2000.the- + _object.graphics_early-the_will_becoming_a_to + _tools.the.busine + _data.d + sthe-ye + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-ID-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-3, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + uspecification-a_the-to.discussions-automated_of_com + _a.known_and.reference.c + lof_any_stakeholders-the.computing_of-that_b + sdue_computing-as.significant_all.further_projector_ + _of.also.for-computer-transacti + _lang + _electronic.provides-used-looking_them.prin + kfiles.enough_unbiased.and.other.and-the_capabilities-leadershi + jthe-for_as-database.their-a-enabling.2000.the- + _object.graphics_early-the_will_becoming_a_to + _tools.the.busine + _data.d + sthe-ye + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-ID-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-3, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + uspecification-a_the-to.discussions-automated_of_com + _a.known_and.reference.c + lof_any_stakeholders-the.computing_of-that_b + sdue_computing-as.significant_all.further_projector_ + _of.also.for-computer-transacti + _lang + _electronic.provides-used-looking_them.prin + kfiles.enough_unbiased.and.other.and-the_capabilities-leadershi + jthe-for_as-database.their-a-enabling.2000.the- + _object.graphics_early-the_will_becoming_a_to + _tools.the.busine + _data.d + sthe-ye + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-ID-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-4, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _in.discovery_th + _will_deskto + _are.between-already-annual-of + q + vability_widespread.by.these_designed_discovery-of-and + ldocuments-ensure.a_and.the-related-tools.adv + _business-bandwidth-the-our_is-test.having-bot + vpervasive-where_distributed_test_of_of-has-the-and-will_s + remerging.ways.and.to_completion.tools-technolo + _vendors-in + _their + _and-law_adoption-g-filter- + mall.industry_data_hoc.pervasive.discover-interacting.provide-p + _information-repository-provide.tools-the.provid + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-ID-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-4, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _in.discovery_th + _will_deskto + _are.between-already-annual-of + q + vability_widespread.by.these_designed_discovery-of-and + ldocuments-ensure.a_and.the-related-tools.adv + _business-bandwidth-the-our_is-test.having-bot + vpervasive-where_distributed_test_of_of-has-the-and-will_s + remerging.ways.and.to_completion.tools-technolo + _vendors-in + _their + _and-law_adoption-g-filter- + mall.industry_data_hoc.pervasive.discover-interacting.provide-p + _information-repository-provide.tools-the.provid + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-ID-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-4, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _in.discovery_th + _will_deskto + _are.between-already-annual-of + q + vability_widespread.by.these_designed_discovery-of-and + ldocuments-ensure.a_and.the-related-tools.adv + _business-bandwidth-the-our_is-test.having-bot + vpervasive-where_distributed_test_of_of-has-the-and-will_s + remerging.ways.and.to_completion.tools-technolo + _vendors-in + _their + _and-law_adoption-g-filter- + mall.industry_data_hoc.pervasive.discover-interacting.provide-p + _information-repository-provide.tools-the.provid + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-ID-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-4, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _in.discovery_th + _will_deskto + _are.between-already-annual-of + q + vability_widespread.by.these_designed_discovery-of-and + ldocuments-ensure.a_and.the-related-tools.adv + _business-bandwidth-the-our_is-test.having-bot + vpervasive-where_distributed_test_of_of-has-the-and-will_s + remerging.ways.and.to_completion.tools-technolo + _vendors-in + _their + _and-law_adoption-g-filter- + mall.industry_data_hoc.pervasive.discover-interacting.provide-p + _information-repository-provide.tools-the.provid + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-ID-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-4, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _in.discovery_th + _will_deskto + _are.between-already-annual-of + q + vability_widespread.by.these_designed_discovery-of-and + ldocuments-ensure.a_and.the-related-tools.adv + _business-bandwidth-the-our_is-test.having-bot + vpervasive-where_distributed_test_of_of-has-the-and-will_s + remerging.ways.and.to_completion.tools-technolo + _vendors-in + _their + _and-law_adoption-g-filter- + mall.industry_data_hoc.pervasive.discover-interacting.provide-p + _information-repository-provide.tools-the.provid + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-ID-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-5, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _of_to-and-and.an.that_in.uses.draft_in.te + _commerce- + wobject_the-the.performance-revolution_e_vocabulary- + gin-of_of.langua + _of_o + _service.publishing.for.and_development.have_collabo + uis_capabilities-accomplish.its-whe + mthe_ability-test-reviewed-provides.fi + uadoption.compute + xinformation-means_to_included.repos + _from-creating_appropriate.be.business.mai + _support.proc + _defining_use-technologies_so + _related.are.tools_these-create_formed-re + _for-as_help-global_early-that-and_th + nare-to.desktop-test-aspects.a-will-as_partnerships.s-the-virtua + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-ID-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-5, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _of_to-and-and.an.that_in.uses.draft_in.te + _commerce- + wobject_the-the.performance-revolution_e_vocabulary- + gin-of_of.langua + _of_o + _service.publishing.for.and_development.have_collabo + uis_capabilities-accomplish.its-whe + mthe_ability-test-reviewed-provides.fi + uadoption.compute + xinformation-means_to_included.repos + _from-creating_appropriate.be.business.mai + _support.proc + _defining_use-technologies_so + _related.are.tools_these-create_formed-re + _for-as_help-global_early-that-and_th + nare-to.desktop-test-aspects.a-will-as_partnerships.s-the-virtua + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-ID-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-5, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _of_to-and-and.an.that_in.uses.draft_in.te + _commerce- + wobject_the-the.performance-revolution_e_vocabulary- + gin-of_of.langua + _of_o + _service.publishing.for.and_development.have_collabo + uis_capabilities-accomplish.its-whe + mthe_ability-test-reviewed-provides.fi + uadoption.compute + xinformation-means_to_included.repos + _from-creating_appropriate.be.business.mai + _support.proc + _defining_use-technologies_so + _related.are.tools_these-create_formed-re + _for-as_help-global_early-that-and_th + nare-to.desktop-test-aspects.a-will-as_partnerships.s-the-virtua + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-ID-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-5, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _of_to-and-and.an.that_in.uses.draft_in.te + _commerce- + wobject_the-the.performance-revolution_e_vocabulary- + gin-of_of.langua + _of_o + _service.publishing.for.and_development.have_collabo + uis_capabilities-accomplish.its-whe + mthe_ability-test-reviewed-provides.fi + uadoption.compute + xinformation-means_to_included.repos + _from-creating_appropriate.be.business.mai + _support.proc + _defining_use-technologies_so + _related.are.tools_these-create_formed-re + _for-as_help-global_early-that-and_th + nare-to.desktop-test-aspects.a-will-as_partnerships.s-the-virtua + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-ID-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-ID-enumeration-5, + which is derived by restriction of built-in type ID + by facet enumeration with values of: + _of_to-and-and.an.that_in.uses.draft_in.te + _commerce- + wobject_the-the.performance-revolution_e_vocabulary- + gin-of_of.langua + _of_o + _service.publishing.for.and_development.have_collabo + uis_capabilities-accomplish.its-whe + mthe_ability-test-reviewed-provides.fi + uadoption.compute + xinformation-means_to_included.repos + _from-creating_appropriate.be.business.mai + _support.proc + _defining_use-technologies_so + _related.are.tools_these-create_formed-re + _for-as_help-global_early-that-and_th + nare-to.desktop-test-aspects.a-will-as_partnerships.s-the-virtua + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-ID-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-ID-whiteSpace-1, + which is derived by restriction of built-in type ID + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-ID-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-ID-whiteSpace-1, + which is derived by restriction of built-in type ID + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-ID-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-ID-whiteSpace-1, + which is derived by restriction of built-in type ID + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-ID-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-ID-whiteSpace-1, + which is derived by restriction of built-in type ID + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-ID-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-ID-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-ID-whiteSpace-1, + which is derived by restriction of built-in type ID + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-ID-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-ID-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-1, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-1, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-1, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-1, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-1, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-2, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 17686137511874199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-2, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 17686137511874199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-2, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 17686137511874199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-2, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 17686137511874199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-2, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 17686137511874199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-3, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 28546026128945922727 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-3, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 28546026128945922727 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-3, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 28546026128945922727 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-3, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 28546026128945922727 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-3, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 28546026128945922727 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-4, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -21615884746337798995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-4, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -21615884746337798995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-4, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -21615884746337798995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-4, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -21615884746337798995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-4, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: -21615884746337798995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-integer-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-minExclusive-5, + which is derived by restriction of built-in type integer + by facet minExclusive with a value of: 99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-1, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-1, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-1, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-1, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-1, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-2, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 95550615253207404896 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-2, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 95550615253207404896 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-2, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 95550615253207404896 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-2, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 95550615253207404896 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-2, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 95550615253207404896 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-3, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -77339411827786563869 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-3, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -77339411827786563869 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-3, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -77339411827786563869 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-3, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -77339411827786563869 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-3, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: -77339411827786563869 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-4, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 32930650198885147439 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-4, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 32930650198885147439 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-4, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 32930650198885147439 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-4, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 32930650198885147439 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-4, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 32930650198885147439 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-integer-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-minInclusive-5, + which is derived by restriction of built-in type integer + by facet minInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-1, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-2, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 41317301383503379774 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-2, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 41317301383503379774 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-2, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 41317301383503379774 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-2, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 41317301383503379774 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-2, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 41317301383503379774 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-3, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -74954891740403573052 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-3, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -74954891740403573052 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-3, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -74954891740403573052 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-3, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -74954891740403573052 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-3, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -74954891740403573052 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-4, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -193415391549711657 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-4, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -193415391549711657 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-4, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -193415391549711657 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-4, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -193415391549711657 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-4, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: -193415391549711657 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-5, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-5, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-5, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-5, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-integer-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxExclusive-5, + which is derived by restriction of built-in type integer + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-1, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-2, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 30666260516606547170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-2, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 30666260516606547170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-2, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 30666260516606547170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-2, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 30666260516606547170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-2, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 30666260516606547170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-3, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 74014545901285999639 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-3, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 74014545901285999639 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-3, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 74014545901285999639 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-3, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 74014545901285999639 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-3, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 74014545901285999639 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-4, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -7294661580248251731 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-4, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -7294661580248251731 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-4, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -7294661580248251731 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-4, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -7294661580248251731 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-4, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: -7294661580248251731 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-5, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-5, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-5, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-5, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-integer-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-integer-maxInclusive-5, + which is derived by restriction of built-in type integer + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-integer-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-fractionDigits-1, + which is derived by restriction of built-in type integer + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-integer-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-fractionDigits-1, + which is derived by restriction of built-in type integer + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-integer-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-fractionDigits-1, + which is derived by restriction of built-in type integer + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-integer-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-fractionDigits-1, + which is derived by restriction of built-in type integer + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-integer-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-fractionDigits-1, + which is derived by restriction of built-in type integer + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-1, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-1, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-1, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-1, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-1, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-2, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-2, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-2, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-2, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-2, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-3, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-3, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-3, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-3, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-3, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-4, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-4, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-4, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-4, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-4, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-5, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-5, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-5, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-5, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-integer-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-integer-totalDigits-5, + which is derived by restriction of built-in type integer + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-1-1" origin="NIST"><description> + File: NISTSchema-integer-pattern-1.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-1, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-1-2" origin="NIST"><description> + File: NISTSchema-integer-pattern-1.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-1, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-1-3" origin="NIST"><description> + File: NISTSchema-integer-pattern-1.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-1, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-1-4" origin="NIST"><description> + File: NISTSchema-integer-pattern-1.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-1, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-1-5" origin="NIST"><description> + File: NISTSchema-integer-pattern-1.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-1, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-2-1" origin="NIST"><description> + File: NISTSchema-integer-pattern-2.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-2, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-2-2" origin="NIST"><description> + File: NISTSchema-integer-pattern-2.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-2, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-2-3" origin="NIST"><description> + File: NISTSchema-integer-pattern-2.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-2, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-2-4" origin="NIST"><description> + File: NISTSchema-integer-pattern-2.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-2, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-2-5" origin="NIST"><description> + File: NISTSchema-integer-pattern-2.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-2, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-3-1" origin="NIST"><description> + File: NISTSchema-integer-pattern-3.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-3, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-3-2" origin="NIST"><description> + File: NISTSchema-integer-pattern-3.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-3, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-3-3" origin="NIST"><description> + File: NISTSchema-integer-pattern-3.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-3, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-3-4" origin="NIST"><description> + File: NISTSchema-integer-pattern-3.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-3, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-3-5" origin="NIST"><description> + File: NISTSchema-integer-pattern-3.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-3, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-4-1" origin="NIST"><description> + File: NISTSchema-integer-pattern-4.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-4, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-4-2" origin="NIST"><description> + File: NISTSchema-integer-pattern-4.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-4, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-4-3" origin="NIST"><description> + File: NISTSchema-integer-pattern-4.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-4, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-4-4" origin="NIST"><description> + File: NISTSchema-integer-pattern-4.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-4, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-4-5" origin="NIST"><description> + File: NISTSchema-integer-pattern-4.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-4, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-5-1" origin="NIST"><description> + File: NISTSchema-integer-pattern-5.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-5, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-5-2" origin="NIST"><description> + File: NISTSchema-integer-pattern-5.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-5, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-5-3" origin="NIST"><description> + File: NISTSchema-integer-pattern-5.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-5, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-5-4" origin="NIST"><description> + File: NISTSchema-integer-pattern-5.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-5, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-pattern-5-5" origin="NIST"><description> + File: NISTSchema-integer-pattern-5.xsd + This schema specifies a datatype, NISTSchema-integer-pattern-5, + which is derived by restriction of built-in type integer + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-integer-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-1, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -1517 + 725065532288209 + 206 + -2237447002 + 285084916042425 + 24 + -4053988933500363156 + -89890255508 + -8 + -4708 + -45 + 716744118 + 8145018 + -8374571770112 + -254 + 7643587514559 + -10600081122 + -9492735505297 + -7152863215395677 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-integer-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-1, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -1517 + 725065532288209 + 206 + -2237447002 + 285084916042425 + 24 + -4053988933500363156 + -89890255508 + -8 + -4708 + -45 + 716744118 + 8145018 + -8374571770112 + -254 + 7643587514559 + -10600081122 + -9492735505297 + -7152863215395677 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-integer-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-1, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -1517 + 725065532288209 + 206 + -2237447002 + 285084916042425 + 24 + -4053988933500363156 + -89890255508 + -8 + -4708 + -45 + 716744118 + 8145018 + -8374571770112 + -254 + 7643587514559 + -10600081122 + -9492735505297 + -7152863215395677 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-integer-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-1, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -1517 + 725065532288209 + 206 + -2237447002 + 285084916042425 + 24 + -4053988933500363156 + -89890255508 + -8 + -4708 + -45 + 716744118 + 8145018 + -8374571770112 + -254 + 7643587514559 + -10600081122 + -9492735505297 + -7152863215395677 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-integer-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-1, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -1517 + 725065532288209 + 206 + -2237447002 + 285084916042425 + 24 + -4053988933500363156 + -89890255508 + -8 + -4708 + -45 + 716744118 + 8145018 + -8374571770112 + -254 + 7643587514559 + -10600081122 + -9492735505297 + -7152863215395677 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-integer-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-2, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -505713314796140345 + 933394799538 + -855 + -86 + 1295 + -9447991691800572 + -25 + -1 + -66420305705795457 + 1845012934334389 + 8298130 + -7 + -19 + 74 + 24818069 + -5256872634315 + 21203 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-integer-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-2, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -505713314796140345 + 933394799538 + -855 + -86 + 1295 + -9447991691800572 + -25 + -1 + -66420305705795457 + 1845012934334389 + 8298130 + -7 + -19 + 74 + 24818069 + -5256872634315 + 21203 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-integer-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-2, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -505713314796140345 + 933394799538 + -855 + -86 + 1295 + -9447991691800572 + -25 + -1 + -66420305705795457 + 1845012934334389 + 8298130 + -7 + -19 + 74 + 24818069 + -5256872634315 + 21203 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-integer-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-2, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -505713314796140345 + 933394799538 + -855 + -86 + 1295 + -9447991691800572 + -25 + -1 + -66420305705795457 + 1845012934334389 + 8298130 + -7 + -19 + 74 + 24818069 + -5256872634315 + 21203 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-integer-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-2, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -505713314796140345 + 933394799538 + -855 + -86 + 1295 + -9447991691800572 + -25 + -1 + -66420305705795457 + 1845012934334389 + 8298130 + -7 + -19 + 74 + 24818069 + -5256872634315 + 21203 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-integer-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-3, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -9870767297 + 7697241387576794 + 959 + 7406255348596786 + -77 + -13338 + -2284170415923603 + -32346087 + 433358354009225 + 50924 + 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-integer-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-3, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -9870767297 + 7697241387576794 + 959 + 7406255348596786 + -77 + -13338 + -2284170415923603 + -32346087 + 433358354009225 + 50924 + 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-integer-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-3, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -9870767297 + 7697241387576794 + 959 + 7406255348596786 + -77 + -13338 + -2284170415923603 + -32346087 + 433358354009225 + 50924 + 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-integer-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-3, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -9870767297 + 7697241387576794 + 959 + 7406255348596786 + -77 + -13338 + -2284170415923603 + -32346087 + 433358354009225 + 50924 + 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-integer-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-3, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -9870767297 + 7697241387576794 + 959 + 7406255348596786 + -77 + -13338 + -2284170415923603 + -32346087 + 433358354009225 + 50924 + 15 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-integer-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-4, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + 652290321 + -909067489538 + 57706384167343 + 14361399 + -64173 + -162245468753482335 + -55077315869 + -65682 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-integer-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-4, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + 652290321 + -909067489538 + 57706384167343 + 14361399 + -64173 + -162245468753482335 + -55077315869 + -65682 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-integer-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-4, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + 652290321 + -909067489538 + 57706384167343 + 14361399 + -64173 + -162245468753482335 + -55077315869 + -65682 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-integer-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-4, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + 652290321 + -909067489538 + 57706384167343 + 14361399 + -64173 + -162245468753482335 + -55077315869 + -65682 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-integer-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-4, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + 652290321 + -909067489538 + 57706384167343 + 14361399 + -64173 + -162245468753482335 + -55077315869 + -65682 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-integer-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-5, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -307678135700 + 87908 + 41 + 4967751205487 + -1 + 98116199919908841 + 6117789012492571 + 254071372012819 + -959133409100439 + -86383 + -3769180 + 45235175439218833 + 10192637 + -49931764598237149 + -3842 + 98813 + 3713779598138732 + 8880334329 + 4744876 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-integer-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-5, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -307678135700 + 87908 + 41 + 4967751205487 + -1 + 98116199919908841 + 6117789012492571 + 254071372012819 + -959133409100439 + -86383 + -3769180 + 45235175439218833 + 10192637 + -49931764598237149 + -3842 + 98813 + 3713779598138732 + 8880334329 + 4744876 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-integer-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-5, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -307678135700 + 87908 + 41 + 4967751205487 + -1 + 98116199919908841 + 6117789012492571 + 254071372012819 + -959133409100439 + -86383 + -3769180 + 45235175439218833 + 10192637 + -49931764598237149 + -3842 + 98813 + 3713779598138732 + 8880334329 + 4744876 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-integer-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-5, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -307678135700 + 87908 + 41 + 4967751205487 + -1 + 98116199919908841 + 6117789012492571 + 254071372012819 + -959133409100439 + -86383 + -3769180 + 45235175439218833 + 10192637 + -49931764598237149 + -3842 + 98813 + 3713779598138732 + 8880334329 + 4744876 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-integer-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-integer-enumeration-5, + which is derived by restriction of built-in type integer + by facet enumeration with values of: + -307678135700 + 87908 + 41 + 4967751205487 + -1 + 98116199919908841 + 6117789012492571 + 254071372012819 + -959133409100439 + -86383 + -3769180 + 45235175439218833 + 10192637 + -49931764598237149 + -3842 + 98813 + 3713779598138732 + 8880334329 + 4744876 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-integer-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-integer-whiteSpace-1, + which is derived by restriction of built-in type integer + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-integer-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-integer-whiteSpace-1, + which is derived by restriction of built-in type integer + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-integer-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-integer-whiteSpace-1, + which is derived by restriction of built-in type integer + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-integer-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-integer-whiteSpace-1, + which is derived by restriction of built-in type integer + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-integer-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-integer-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-integer-whiteSpace-1, + which is derived by restriction of built-in type integer + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-integer-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-integer-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-int-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-1, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-int-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-1, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-int-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-1, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-int-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-1, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-int-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-1, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-int-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-2, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -452741467 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-int-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-2, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -452741467 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-int-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-2, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -452741467 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-int-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-2, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -452741467 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-int-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-2, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -452741467 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-int-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-3, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -481326475 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-int-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-3, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -481326475 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-int-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-3, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -481326475 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-int-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-3, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -481326475 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-int-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-3, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: -481326475 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-int-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-4, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 1881545443 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-int-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-4, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 1881545443 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-int-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-4, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 1881545443 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-int-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-4, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 1881545443 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-int-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-4, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 1881545443 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-int-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-minExclusive-5, + which is derived by restriction of built-in type int + by facet minExclusive with a value of: 2147483646 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-int-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-1, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-int-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-1, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-int-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-1, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-int-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-1, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-int-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-1, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-int-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-2, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 658947150 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-int-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-2, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 658947150 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-int-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-2, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 658947150 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-int-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-2, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 658947150 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-int-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-2, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 658947150 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-int-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-3, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 318072104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-int-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-3, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 318072104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-int-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-3, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 318072104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-int-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-3, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 318072104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-int-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-3, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 318072104 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-int-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-4, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -801123844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-int-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-4, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -801123844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-int-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-4, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -801123844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-int-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-4, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -801123844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-int-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-4, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: -801123844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-int-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-minInclusive-5, + which is derived by restriction of built-in type int + by facet minInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-1, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-2, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 1450117691 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-2, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 1450117691 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-2, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 1450117691 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-2, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 1450117691 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-2, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 1450117691 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-3, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 181480918 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-3, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 181480918 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-3, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 181480918 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-3, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 181480918 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-3, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 181480918 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-4, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -1451959894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-4, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -1451959894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-4, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -1451959894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-4, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -1451959894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-4, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: -1451959894 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-5, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-5, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-5, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-5, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-int-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxExclusive-5, + which is derived by restriction of built-in type int + by facet maxExclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-1, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -2147483648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-2, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -606270734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-2, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -606270734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-2, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -606270734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-2, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -606270734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-2, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -606270734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-3, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -1475180415 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-3, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -1475180415 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-3, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -1475180415 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-3, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -1475180415 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-3, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: -1475180415 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-4, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 817967170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-4, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 817967170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-4, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 817967170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-4, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 817967170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-4, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 817967170 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-5, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-5, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-5, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-5, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-int-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-int-maxInclusive-5, + which is derived by restriction of built-in type int + by facet maxInclusive with a value of: 2147483647 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-int-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-fractionDigits-1, + which is derived by restriction of built-in type int + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-int-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-fractionDigits-1, + which is derived by restriction of built-in type int + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-int-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-fractionDigits-1, + which is derived by restriction of built-in type int + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-int-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-fractionDigits-1, + which is derived by restriction of built-in type int + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-int-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-fractionDigits-1, + which is derived by restriction of built-in type int + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-int-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-1, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-int-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-1, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-int-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-1, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-int-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-1, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-int-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-1, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-int-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-2, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-int-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-2, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-int-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-2, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-int-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-2, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-int-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-2, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-int-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-3, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-int-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-3, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-int-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-3, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-int-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-3, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-int-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-3, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-int-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-4, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-int-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-4, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-int-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-4, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-int-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-4, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-int-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-4, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-int-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-5, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-int-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-5, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-int-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-5, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-int-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-5, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-int-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-int-totalDigits-5, + which is derived by restriction of built-in type int + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-1-1" origin="NIST"><description> + File: NISTSchema-int-pattern-1.xsd + This schema specifies a datatype, NISTSchema-int-pattern-1, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-1-2" origin="NIST"><description> + File: NISTSchema-int-pattern-1.xsd + This schema specifies a datatype, NISTSchema-int-pattern-1, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-1-3" origin="NIST"><description> + File: NISTSchema-int-pattern-1.xsd + This schema specifies a datatype, NISTSchema-int-pattern-1, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-1-4" origin="NIST"><description> + File: NISTSchema-int-pattern-1.xsd + This schema specifies a datatype, NISTSchema-int-pattern-1, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-1-5" origin="NIST"><description> + File: NISTSchema-int-pattern-1.xsd + This schema specifies a datatype, NISTSchema-int-pattern-1, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-2-1" origin="NIST"><description> + File: NISTSchema-int-pattern-2.xsd + This schema specifies a datatype, NISTSchema-int-pattern-2, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-2-2" origin="NIST"><description> + File: NISTSchema-int-pattern-2.xsd + This schema specifies a datatype, NISTSchema-int-pattern-2, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-2-3" origin="NIST"><description> + File: NISTSchema-int-pattern-2.xsd + This schema specifies a datatype, NISTSchema-int-pattern-2, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-2-4" origin="NIST"><description> + File: NISTSchema-int-pattern-2.xsd + This schema specifies a datatype, NISTSchema-int-pattern-2, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-2-5" origin="NIST"><description> + File: NISTSchema-int-pattern-2.xsd + This schema specifies a datatype, NISTSchema-int-pattern-2, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-3-1" origin="NIST"><description> + File: NISTSchema-int-pattern-3.xsd + This schema specifies a datatype, NISTSchema-int-pattern-3, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-3-2" origin="NIST"><description> + File: NISTSchema-int-pattern-3.xsd + This schema specifies a datatype, NISTSchema-int-pattern-3, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-3-3" origin="NIST"><description> + File: NISTSchema-int-pattern-3.xsd + This schema specifies a datatype, NISTSchema-int-pattern-3, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-3-4" origin="NIST"><description> + File: NISTSchema-int-pattern-3.xsd + This schema specifies a datatype, NISTSchema-int-pattern-3, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-3-5" origin="NIST"><description> + File: NISTSchema-int-pattern-3.xsd + This schema specifies a datatype, NISTSchema-int-pattern-3, + which is derived by restriction of built-in type int + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-4-1" origin="NIST"><description> + File: NISTSchema-int-pattern-4.xsd + This schema specifies a datatype, NISTSchema-int-pattern-4, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-4-2" origin="NIST"><description> + File: NISTSchema-int-pattern-4.xsd + This schema specifies a datatype, NISTSchema-int-pattern-4, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-4-3" origin="NIST"><description> + File: NISTSchema-int-pattern-4.xsd + This schema specifies a datatype, NISTSchema-int-pattern-4, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-4-4" origin="NIST"><description> + File: NISTSchema-int-pattern-4.xsd + This schema specifies a datatype, NISTSchema-int-pattern-4, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-4-5" origin="NIST"><description> + File: NISTSchema-int-pattern-4.xsd + This schema specifies a datatype, NISTSchema-int-pattern-4, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-5-1" origin="NIST"><description> + File: NISTSchema-int-pattern-5.xsd + This schema specifies a datatype, NISTSchema-int-pattern-5, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-5-2" origin="NIST"><description> + File: NISTSchema-int-pattern-5.xsd + This schema specifies a datatype, NISTSchema-int-pattern-5, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-5-3" origin="NIST"><description> + File: NISTSchema-int-pattern-5.xsd + This schema specifies a datatype, NISTSchema-int-pattern-5, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-5-4" origin="NIST"><description> + File: NISTSchema-int-pattern-5.xsd + This schema specifies a datatype, NISTSchema-int-pattern-5, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-pattern-5-5" origin="NIST"><description> + File: NISTSchema-int-pattern-5.xsd + This schema specifies a datatype, NISTSchema-int-pattern-5, + which is derived by restriction of built-in type int + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-int-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-1, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 9129683 + -20676679 + 981445 + -427396 + 96552477 + -671392302 + 50712232 + -941186 + 13 + -83484226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-int-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-1, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 9129683 + -20676679 + 981445 + -427396 + 96552477 + -671392302 + 50712232 + -941186 + 13 + -83484226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-int-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-1, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 9129683 + -20676679 + 981445 + -427396 + 96552477 + -671392302 + 50712232 + -941186 + 13 + -83484226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-int-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-1, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 9129683 + -20676679 + 981445 + -427396 + 96552477 + -671392302 + 50712232 + -941186 + 13 + -83484226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-int-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-1, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 9129683 + -20676679 + 981445 + -427396 + 96552477 + -671392302 + 50712232 + -941186 + 13 + -83484226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-int-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-2, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 93 + -6 + -538515139 + 94701 + 610936 + -25866331 + -82142 + 6891 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-int-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-2, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 93 + -6 + -538515139 + 94701 + 610936 + -25866331 + -82142 + 6891 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-int-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-2, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 93 + -6 + -538515139 + 94701 + 610936 + -25866331 + -82142 + 6891 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-int-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-2, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 93 + -6 + -538515139 + 94701 + 610936 + -25866331 + -82142 + 6891 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-int-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-2, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 93 + -6 + -538515139 + 94701 + 610936 + -25866331 + -82142 + 6891 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-int-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-3, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 381196 + 2147483647 + -14906141 + 42063 + 649 + 420 + 59511940 + -60 + 63003 + -166390 + -98 + -441 + 2701822 + 2 + 7534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-int-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-3, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 381196 + 2147483647 + -14906141 + 42063 + 649 + 420 + 59511940 + -60 + 63003 + -166390 + -98 + -441 + 2701822 + 2 + 7534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-int-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-3, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 381196 + 2147483647 + -14906141 + 42063 + 649 + 420 + 59511940 + -60 + 63003 + -166390 + -98 + -441 + 2701822 + 2 + 7534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-int-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-3, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 381196 + 2147483647 + -14906141 + 42063 + 649 + 420 + 59511940 + -60 + 63003 + -166390 + -98 + -441 + 2701822 + 2 + 7534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-int-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-3, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 381196 + 2147483647 + -14906141 + 42063 + 649 + 420 + 59511940 + -60 + 63003 + -166390 + -98 + -441 + 2701822 + 2 + 7534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-int-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-4, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 6928 + 76673610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-int-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-4, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 6928 + 76673610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-int-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-4, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 6928 + 76673610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-int-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-4, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 6928 + 76673610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-int-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-4, + which is derived by restriction of built-in type int + by facet enumeration with values of: + 6928 + 76673610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-int-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-5, + which is derived by restriction of built-in type int + by facet enumeration with values of: + -41858 + -370192952 + 302 + -28 + 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-int-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-5, + which is derived by restriction of built-in type int + by facet enumeration with values of: + -41858 + -370192952 + 302 + -28 + 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-int-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-5, + which is derived by restriction of built-in type int + by facet enumeration with values of: + -41858 + -370192952 + 302 + -28 + 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-int-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-5, + which is derived by restriction of built-in type int + by facet enumeration with values of: + -41858 + -370192952 + 302 + -28 + 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-int-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-int-enumeration-5, + which is derived by restriction of built-in type int + by facet enumeration with values of: + -41858 + -370192952 + 302 + -28 + 67 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-int-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-int-whiteSpace-1, + which is derived by restriction of built-in type int + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-int-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-int-whiteSpace-1, + which is derived by restriction of built-in type int + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-int-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-int-whiteSpace-1, + which is derived by restriction of built-in type int + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-int-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-int-whiteSpace-1, + which is derived by restriction of built-in type int + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-int-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-int-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-int-whiteSpace-1, + which is derived by restriction of built-in type int + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-int-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-int-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-language-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-1, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-language-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-1, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-language-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-1, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-language-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-1, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-language-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-1, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-language-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-2, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-language-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-2, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-language-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-2, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-language-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-2, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-language-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-3, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-language-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-3, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-language-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-3, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-language-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-3, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-language-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-4, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-language-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-4, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-language-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-4, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-language-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-5, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-language-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-5, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-language-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-5, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-language-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-5, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-language-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-language-maxLength-5, + which is derived by restriction of built-in type language + by facet maxLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-1-1" origin="NIST"><description> + File: NISTSchema-language-minLength-1.xsd + This schema specifies a datatype, NISTSchema-language-minLength-1, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-1-2" origin="NIST"><description> + File: NISTSchema-language-minLength-1.xsd + This schema specifies a datatype, NISTSchema-language-minLength-1, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-1-3" origin="NIST"><description> + File: NISTSchema-language-minLength-1.xsd + This schema specifies a datatype, NISTSchema-language-minLength-1, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-1-4" origin="NIST"><description> + File: NISTSchema-language-minLength-1.xsd + This schema specifies a datatype, NISTSchema-language-minLength-1, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-1-5" origin="NIST"><description> + File: NISTSchema-language-minLength-1.xsd + This schema specifies a datatype, NISTSchema-language-minLength-1, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-2-1" origin="NIST"><description> + File: NISTSchema-language-minLength-2.xsd + This schema specifies a datatype, NISTSchema-language-minLength-2, + which is derived by restriction of built-in type language + by facet minLength with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-2-2" origin="NIST"><description> + File: NISTSchema-language-minLength-2.xsd + This schema specifies a datatype, NISTSchema-language-minLength-2, + which is derived by restriction of built-in type language + by facet minLength with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-2-3" origin="NIST"><description> + File: NISTSchema-language-minLength-2.xsd + This schema specifies a datatype, NISTSchema-language-minLength-2, + which is derived by restriction of built-in type language + by facet minLength with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-2-4" origin="NIST"><description> + File: NISTSchema-language-minLength-2.xsd + This schema specifies a datatype, NISTSchema-language-minLength-2, + which is derived by restriction of built-in type language + by facet minLength with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-2-5" origin="NIST"><description> + File: NISTSchema-language-minLength-2.xsd + This schema specifies a datatype, NISTSchema-language-minLength-2, + which is derived by restriction of built-in type language + by facet minLength with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-3-1" origin="NIST"><description> + File: NISTSchema-language-minLength-3.xsd + This schema specifies a datatype, NISTSchema-language-minLength-3, + which is derived by restriction of built-in type language + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-3-2" origin="NIST"><description> + File: NISTSchema-language-minLength-3.xsd + This schema specifies a datatype, NISTSchema-language-minLength-3, + which is derived by restriction of built-in type language + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-3-3" origin="NIST"><description> + File: NISTSchema-language-minLength-3.xsd + This schema specifies a datatype, NISTSchema-language-minLength-3, + which is derived by restriction of built-in type language + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-3-4" origin="NIST"><description> + File: NISTSchema-language-minLength-3.xsd + This schema specifies a datatype, NISTSchema-language-minLength-3, + which is derived by restriction of built-in type language + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-3-5" origin="NIST"><description> + File: NISTSchema-language-minLength-3.xsd + This schema specifies a datatype, NISTSchema-language-minLength-3, + which is derived by restriction of built-in type language + by facet minLength with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-4-1" origin="NIST"><description> + File: NISTSchema-language-minLength-4.xsd + This schema specifies a datatype, NISTSchema-language-minLength-4, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-4-2" origin="NIST"><description> + File: NISTSchema-language-minLength-4.xsd + This schema specifies a datatype, NISTSchema-language-minLength-4, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-4-3" origin="NIST"><description> + File: NISTSchema-language-minLength-4.xsd + This schema specifies a datatype, NISTSchema-language-minLength-4, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-4-4" origin="NIST"><description> + File: NISTSchema-language-minLength-4.xsd + This schema specifies a datatype, NISTSchema-language-minLength-4, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-4-5" origin="NIST"><description> + File: NISTSchema-language-minLength-4.xsd + This schema specifies a datatype, NISTSchema-language-minLength-4, + which is derived by restriction of built-in type language + by facet minLength with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-5-1" origin="NIST"><description> + File: NISTSchema-language-minLength-5.xsd + This schema specifies a datatype, NISTSchema-language-minLength-5, + which is derived by restriction of built-in type language + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-5-2" origin="NIST"><description> + File: NISTSchema-language-minLength-5.xsd + This schema specifies a datatype, NISTSchema-language-minLength-5, + which is derived by restriction of built-in type language + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-5-3" origin="NIST"><description> + File: NISTSchema-language-minLength-5.xsd + This schema specifies a datatype, NISTSchema-language-minLength-5, + which is derived by restriction of built-in type language + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-5-4" origin="NIST"><description> + File: NISTSchema-language-minLength-5.xsd + This schema specifies a datatype, NISTSchema-language-minLength-5, + which is derived by restriction of built-in type language + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-minLength-5-5" origin="NIST"><description> + File: NISTSchema-language-minLength-5.xsd + This schema specifies a datatype, NISTSchema-language-minLength-5, + which is derived by restriction of built-in type language + by facet minLength with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-1-1" origin="NIST"><description> + File: NISTSchema-language-length-1.xsd + This schema specifies a datatype, NISTSchema-language-length-1, + which is derived by restriction of built-in type language + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-1-2" origin="NIST"><description> + File: NISTSchema-language-length-1.xsd + This schema specifies a datatype, NISTSchema-language-length-1, + which is derived by restriction of built-in type language + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-1-3" origin="NIST"><description> + File: NISTSchema-language-length-1.xsd + This schema specifies a datatype, NISTSchema-language-length-1, + which is derived by restriction of built-in type language + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-1-4" origin="NIST"><description> + File: NISTSchema-language-length-1.xsd + This schema specifies a datatype, NISTSchema-language-length-1, + which is derived by restriction of built-in type language + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-1-5" origin="NIST"><description> + File: NISTSchema-language-length-1.xsd + This schema specifies a datatype, NISTSchema-language-length-1, + which is derived by restriction of built-in type language + by facet length with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-2-1" origin="NIST"><description> + File: NISTSchema-language-length-2.xsd + This schema specifies a datatype, NISTSchema-language-length-2, + which is derived by restriction of built-in type language + by facet length with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-2-2" origin="NIST"><description> + File: NISTSchema-language-length-2.xsd + This schema specifies a datatype, NISTSchema-language-length-2, + which is derived by restriction of built-in type language + by facet length with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-2-3" origin="NIST"><description> + File: NISTSchema-language-length-2.xsd + This schema specifies a datatype, NISTSchema-language-length-2, + which is derived by restriction of built-in type language + by facet length with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-2-4" origin="NIST"><description> + File: NISTSchema-language-length-2.xsd + This schema specifies a datatype, NISTSchema-language-length-2, + which is derived by restriction of built-in type language + by facet length with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-2-5" origin="NIST"><description> + File: NISTSchema-language-length-2.xsd + This schema specifies a datatype, NISTSchema-language-length-2, + which is derived by restriction of built-in type language + by facet length with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-3-1" origin="NIST"><description> + File: NISTSchema-language-length-3.xsd + This schema specifies a datatype, NISTSchema-language-length-3, + which is derived by restriction of built-in type language + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-3-2" origin="NIST"><description> + File: NISTSchema-language-length-3.xsd + This schema specifies a datatype, NISTSchema-language-length-3, + which is derived by restriction of built-in type language + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-3-3" origin="NIST"><description> + File: NISTSchema-language-length-3.xsd + This schema specifies a datatype, NISTSchema-language-length-3, + which is derived by restriction of built-in type language + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-3-4" origin="NIST"><description> + File: NISTSchema-language-length-3.xsd + This schema specifies a datatype, NISTSchema-language-length-3, + which is derived by restriction of built-in type language + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-3-5" origin="NIST"><description> + File: NISTSchema-language-length-3.xsd + This schema specifies a datatype, NISTSchema-language-length-3, + which is derived by restriction of built-in type language + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-4-1" origin="NIST"><description> + File: NISTSchema-language-length-4.xsd + This schema specifies a datatype, NISTSchema-language-length-4, + which is derived by restriction of built-in type language + by facet length with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-4-2" origin="NIST"><description> + File: NISTSchema-language-length-4.xsd + This schema specifies a datatype, NISTSchema-language-length-4, + which is derived by restriction of built-in type language + by facet length with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-4-3" origin="NIST"><description> + File: NISTSchema-language-length-4.xsd + This schema specifies a datatype, NISTSchema-language-length-4, + which is derived by restriction of built-in type language + by facet length with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-4-4" origin="NIST"><description> + File: NISTSchema-language-length-4.xsd + This schema specifies a datatype, NISTSchema-language-length-4, + which is derived by restriction of built-in type language + by facet length with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-4-5" origin="NIST"><description> + File: NISTSchema-language-length-4.xsd + This schema specifies a datatype, NISTSchema-language-length-4, + which is derived by restriction of built-in type language + by facet length with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-5-1" origin="NIST"><description> + File: NISTSchema-language-length-5.xsd + This schema specifies a datatype, NISTSchema-language-length-5, + which is derived by restriction of built-in type language + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-5-2" origin="NIST"><description> + File: NISTSchema-language-length-5.xsd + This schema specifies a datatype, NISTSchema-language-length-5, + which is derived by restriction of built-in type language + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-5-3" origin="NIST"><description> + File: NISTSchema-language-length-5.xsd + This schema specifies a datatype, NISTSchema-language-length-5, + which is derived by restriction of built-in type language + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-5-4" origin="NIST"><description> + File: NISTSchema-language-length-5.xsd + This schema specifies a datatype, NISTSchema-language-length-5, + which is derived by restriction of built-in type language + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-length-5-5" origin="NIST"><description> + File: NISTSchema-language-length-5.xsd + This schema specifies a datatype, NISTSchema-language-length-5, + which is derived by restriction of built-in type language + by facet length with a value of: 11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-1-1" origin="NIST"><description> + File: NISTSchema-language-pattern-1.xsd + This schema specifies a datatype, NISTSchema-language-pattern-1, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-1-2" origin="NIST"><description> + File: NISTSchema-language-pattern-1.xsd + This schema specifies a datatype, NISTSchema-language-pattern-1, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-1-3" origin="NIST"><description> + File: NISTSchema-language-pattern-1.xsd + This schema specifies a datatype, NISTSchema-language-pattern-1, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-1-4" origin="NIST"><description> + File: NISTSchema-language-pattern-1.xsd + This schema specifies a datatype, NISTSchema-language-pattern-1, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-1-5" origin="NIST"><description> + File: NISTSchema-language-pattern-1.xsd + This schema specifies a datatype, NISTSchema-language-pattern-1, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-2-1" origin="NIST"><description> + File: NISTSchema-language-pattern-2.xsd + This schema specifies a datatype, NISTSchema-language-pattern-2, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-2-2" origin="NIST"><description> + File: NISTSchema-language-pattern-2.xsd + This schema specifies a datatype, NISTSchema-language-pattern-2, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-2-3" origin="NIST"><description> + File: NISTSchema-language-pattern-2.xsd + This schema specifies a datatype, NISTSchema-language-pattern-2, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-2-4" origin="NIST"><description> + File: NISTSchema-language-pattern-2.xsd + This schema specifies a datatype, NISTSchema-language-pattern-2, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-2-5" origin="NIST"><description> + File: NISTSchema-language-pattern-2.xsd + This schema specifies a datatype, NISTSchema-language-pattern-2, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-3-1" origin="NIST"><description> + File: NISTSchema-language-pattern-3.xsd + This schema specifies a datatype, NISTSchema-language-pattern-3, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-3-2" origin="NIST"><description> + File: NISTSchema-language-pattern-3.xsd + This schema specifies a datatype, NISTSchema-language-pattern-3, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-3-3" origin="NIST"><description> + File: NISTSchema-language-pattern-3.xsd + This schema specifies a datatype, NISTSchema-language-pattern-3, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-3-4" origin="NIST"><description> + File: NISTSchema-language-pattern-3.xsd + This schema specifies a datatype, NISTSchema-language-pattern-3, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-3-5" origin="NIST"><description> + File: NISTSchema-language-pattern-3.xsd + This schema specifies a datatype, NISTSchema-language-pattern-3, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-4-1" origin="NIST"><description> + File: NISTSchema-language-pattern-4.xsd + This schema specifies a datatype, NISTSchema-language-pattern-4, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-4-2" origin="NIST"><description> + File: NISTSchema-language-pattern-4.xsd + This schema specifies a datatype, NISTSchema-language-pattern-4, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-4-3" origin="NIST"><description> + File: NISTSchema-language-pattern-4.xsd + This schema specifies a datatype, NISTSchema-language-pattern-4, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-4-4" origin="NIST"><description> + File: NISTSchema-language-pattern-4.xsd + This schema specifies a datatype, NISTSchema-language-pattern-4, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-4-5" origin="NIST"><description> + File: NISTSchema-language-pattern-4.xsd + This schema specifies a datatype, NISTSchema-language-pattern-4, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-5-1" origin="NIST"><description> + File: NISTSchema-language-pattern-5.xsd + This schema specifies a datatype, NISTSchema-language-pattern-5, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-5-2" origin="NIST"><description> + File: NISTSchema-language-pattern-5.xsd + This schema specifies a datatype, NISTSchema-language-pattern-5, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-5-3" origin="NIST"><description> + File: NISTSchema-language-pattern-5.xsd + This schema specifies a datatype, NISTSchema-language-pattern-5, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-5-4" origin="NIST"><description> + File: NISTSchema-language-pattern-5.xsd + This schema specifies a datatype, NISTSchema-language-pattern-5, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-pattern-5-5" origin="NIST"><description> + File: NISTSchema-language-pattern-5.xsd + This schema specifies a datatype, NISTSchema-language-pattern-5, + which is derived by restriction of built-in type language + by facet pattern with a value of: ([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{3})* + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-language-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-1, + which is derived by restriction of built-in type language + by facet enumeration with values of: + ML + MN + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-language-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-1, + which is derived by restriction of built-in type language + by facet enumeration with values of: + ML + MN + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-language-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-1, + which is derived by restriction of built-in type language + by facet enumeration with values of: + ML + MN + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-language-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-1, + which is derived by restriction of built-in type language + by facet enumeration with values of: + ML + MN + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-language-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-1, + which is derived by restriction of built-in type language + by facet enumeration with values of: + ML + MN + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-language-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-2, + which is derived by restriction of built-in type language + by facet enumeration with values of: + TE + TG + TH + TI + TK + TL + TN + TO + TR + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-language-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-2, + which is derived by restriction of built-in type language + by facet enumeration with values of: + TE + TG + TH + TI + TK + TL + TN + TO + TR + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-language-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-2, + which is derived by restriction of built-in type language + by facet enumeration with values of: + TE + TG + TH + TI + TK + TL + TN + TO + TR + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-language-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-2, + which is derived by restriction of built-in type language + by facet enumeration with values of: + TE + TG + TH + TI + TK + TL + TN + TO + TR + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-language-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-2, + which is derived by restriction of built-in type language + by facet enumeration with values of: + TE + TG + TH + TI + TK + TL + TN + TO + TR + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-language-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-3, + which is derived by restriction of built-in type language + by facet enumeration with values of: + XH + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-language-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-3, + which is derived by restriction of built-in type language + by facet enumeration with values of: + XH + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-language-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-3, + which is derived by restriction of built-in type language + by facet enumeration with values of: + XH + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-language-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-3, + which is derived by restriction of built-in type language + by facet enumeration with values of: + XH + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-language-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-3, + which is derived by restriction of built-in type language + by facet enumeration with values of: + XH + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-language-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-4, + which is derived by restriction of built-in type language + by facet enumeration with values of: + NL + NO + OC + OM + OR + PA + PL + PS + PT + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-language-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-4, + which is derived by restriction of built-in type language + by facet enumeration with values of: + NL + NO + OC + OM + OR + PA + PL + PS + PT + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-language-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-4, + which is derived by restriction of built-in type language + by facet enumeration with values of: + NL + NO + OC + OM + OR + PA + PL + PS + PT + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-language-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-4, + which is derived by restriction of built-in type language + by facet enumeration with values of: + NL + NO + OC + OM + OR + PA + PL + PS + PT + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-language-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-4, + which is derived by restriction of built-in type language + by facet enumeration with values of: + NL + NO + OC + OM + OR + PA + PL + PS + PT + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-language-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-5, + which is derived by restriction of built-in type language + by facet enumeration with values of: + AF + AM + AR + AS + AY + AZ + BA + BE + BG + BH + BI + BN + BO + BR + CA + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-language-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-5, + which is derived by restriction of built-in type language + by facet enumeration with values of: + AF + AM + AR + AS + AY + AZ + BA + BE + BG + BH + BI + BN + BO + BR + CA + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-language-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-5, + which is derived by restriction of built-in type language + by facet enumeration with values of: + AF + AM + AR + AS + AY + AZ + BA + BE + BG + BH + BI + BN + BO + BR + CA + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-language-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-5, + which is derived by restriction of built-in type language + by facet enumeration with values of: + AF + AM + AR + AS + AY + AZ + BA + BE + BG + BH + BI + BN + BO + BR + CA + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-language-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-language-enumeration-5, + which is derived by restriction of built-in type language + by facet enumeration with values of: + AF + AM + AR + AS + AY + AZ + BA + BE + BG + BH + BI + BN + BO + BR + CA + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-language-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-language-whiteSpace-1, + which is derived by restriction of built-in type language + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-language-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-language-whiteSpace-1, + which is derived by restriction of built-in type language + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-language-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-language-whiteSpace-1, + which is derived by restriction of built-in type language + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-language-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-language-whiteSpace-1, + which is derived by restriction of built-in type language + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-language-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-language-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-language-whiteSpace-1, + which is derived by restriction of built-in type language + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-language-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-language-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-long-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-1, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-long-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-1, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-long-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-1, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-long-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-1, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-long-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-1, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-long-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-2, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 2299712036813864958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-long-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-2, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 2299712036813864958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-long-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-2, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 2299712036813864958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-long-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-2, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 2299712036813864958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-long-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-2, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 2299712036813864958 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-long-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-3, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -658882616387158017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-long-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-3, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -658882616387158017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-long-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-3, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -658882616387158017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-long-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-3, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -658882616387158017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-long-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-3, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -658882616387158017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-long-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-4, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -5256571552056385537 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-long-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-4, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -5256571552056385537 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-long-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-4, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -5256571552056385537 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-long-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-4, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -5256571552056385537 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-long-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-4, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: -5256571552056385537 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-long-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-minExclusive-5, + which is derived by restriction of built-in type long + by facet minExclusive with a value of: 9223372036854775806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-long-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-1, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-long-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-1, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-long-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-1, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-long-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-1, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-long-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-1, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-long-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-2, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 6412767577339226111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-long-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-2, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 6412767577339226111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-long-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-2, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 6412767577339226111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-long-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-2, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 6412767577339226111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-long-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-2, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 6412767577339226111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-long-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-3, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 1270422495175297023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-long-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-3, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 1270422495175297023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-long-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-3, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 1270422495175297023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-long-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-3, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 1270422495175297023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-long-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-3, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 1270422495175297023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-long-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-4, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -4532494498917564417 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-long-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-4, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -4532494498917564417 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-long-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-4, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -4532494498917564417 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-long-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-4, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -4532494498917564417 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-long-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-4, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: -4532494498917564417 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-long-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-minInclusive-5, + which is derived by restriction of built-in type long + by facet minInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-1, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: -9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-2, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 2836007684157147135 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-2, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 2836007684157147135 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-2, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 2836007684157147135 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-2, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 2836007684157147135 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-2, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 2836007684157147135 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-3, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 3378659097063354367 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-3, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 3378659097063354367 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-3, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 3378659097063354367 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-3, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 3378659097063354367 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-3, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 3378659097063354367 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-4, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 1087449992814280703 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-4, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 1087449992814280703 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-4, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 1087449992814280703 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-4, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 1087449992814280703 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-4, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 1087449992814280703 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-5, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-5, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-5, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-5, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-long-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxExclusive-5, + which is derived by restriction of built-in type long + by facet maxExclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-1, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -9223372036854775808 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-2, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -6294969312045524993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-2, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -6294969312045524993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-2, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -6294969312045524993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-2, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -6294969312045524993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-2, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -6294969312045524993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-3, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -1882676495738210305 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-3, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -1882676495738210305 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-3, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -1882676495738210305 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-3, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -1882676495738210305 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-3, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: -1882676495738210305 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-4, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 8551508749796401151 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-4, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 8551508749796401151 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-4, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 8551508749796401151 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-4, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 8551508749796401151 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-4, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 8551508749796401151 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-5, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-5, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-5, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-5, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-long-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-long-maxInclusive-5, + which is derived by restriction of built-in type long + by facet maxInclusive with a value of: 9223372036854775807 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-long-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-fractionDigits-1, + which is derived by restriction of built-in type long + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-long-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-fractionDigits-1, + which is derived by restriction of built-in type long + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-long-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-fractionDigits-1, + which is derived by restriction of built-in type long + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-long-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-fractionDigits-1, + which is derived by restriction of built-in type long + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-long-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-fractionDigits-1, + which is derived by restriction of built-in type long + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-long-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-1, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-long-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-1, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-long-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-1, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-long-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-1, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-long-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-1, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-long-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-2, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-long-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-2, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-long-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-2, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-long-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-2, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-long-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-2, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-long-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-3, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-long-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-3, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-long-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-3, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-long-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-3, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-long-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-3, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-long-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-4, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-long-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-4, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-long-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-4, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-long-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-4, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-long-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-4, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-long-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-5, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-long-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-5, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-long-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-5, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-long-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-5, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-long-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-long-totalDigits-5, + which is derived by restriction of built-in type long + by facet totalDigits with a value of: 19 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-1-1" origin="NIST"><description> + File: NISTSchema-long-pattern-1.xsd + This schema specifies a datatype, NISTSchema-long-pattern-1, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-1-2" origin="NIST"><description> + File: NISTSchema-long-pattern-1.xsd + This schema specifies a datatype, NISTSchema-long-pattern-1, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-1-3" origin="NIST"><description> + File: NISTSchema-long-pattern-1.xsd + This schema specifies a datatype, NISTSchema-long-pattern-1, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-1-4" origin="NIST"><description> + File: NISTSchema-long-pattern-1.xsd + This schema specifies a datatype, NISTSchema-long-pattern-1, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-1-5" origin="NIST"><description> + File: NISTSchema-long-pattern-1.xsd + This schema specifies a datatype, NISTSchema-long-pattern-1, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-2-1" origin="NIST"><description> + File: NISTSchema-long-pattern-2.xsd + This schema specifies a datatype, NISTSchema-long-pattern-2, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-2-2" origin="NIST"><description> + File: NISTSchema-long-pattern-2.xsd + This schema specifies a datatype, NISTSchema-long-pattern-2, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-2-3" origin="NIST"><description> + File: NISTSchema-long-pattern-2.xsd + This schema specifies a datatype, NISTSchema-long-pattern-2, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-2-4" origin="NIST"><description> + File: NISTSchema-long-pattern-2.xsd + This schema specifies a datatype, NISTSchema-long-pattern-2, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-2-5" origin="NIST"><description> + File: NISTSchema-long-pattern-2.xsd + This schema specifies a datatype, NISTSchema-long-pattern-2, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-3-1" origin="NIST"><description> + File: NISTSchema-long-pattern-3.xsd + This schema specifies a datatype, NISTSchema-long-pattern-3, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-3-2" origin="NIST"><description> + File: NISTSchema-long-pattern-3.xsd + This schema specifies a datatype, NISTSchema-long-pattern-3, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-3-3" origin="NIST"><description> + File: NISTSchema-long-pattern-3.xsd + This schema specifies a datatype, NISTSchema-long-pattern-3, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-3-4" origin="NIST"><description> + File: NISTSchema-long-pattern-3.xsd + This schema specifies a datatype, NISTSchema-long-pattern-3, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-3-5" origin="NIST"><description> + File: NISTSchema-long-pattern-3.xsd + This schema specifies a datatype, NISTSchema-long-pattern-3, + which is derived by restriction of built-in type long + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-4-1" origin="NIST"><description> + File: NISTSchema-long-pattern-4.xsd + This schema specifies a datatype, NISTSchema-long-pattern-4, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-4-2" origin="NIST"><description> + File: NISTSchema-long-pattern-4.xsd + This schema specifies a datatype, NISTSchema-long-pattern-4, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-4-3" origin="NIST"><description> + File: NISTSchema-long-pattern-4.xsd + This schema specifies a datatype, NISTSchema-long-pattern-4, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-4-4" origin="NIST"><description> + File: NISTSchema-long-pattern-4.xsd + This schema specifies a datatype, NISTSchema-long-pattern-4, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-4-5" origin="NIST"><description> + File: NISTSchema-long-pattern-4.xsd + This schema specifies a datatype, NISTSchema-long-pattern-4, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-5-1" origin="NIST"><description> + File: NISTSchema-long-pattern-5.xsd + This schema specifies a datatype, NISTSchema-long-pattern-5, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-5-2" origin="NIST"><description> + File: NISTSchema-long-pattern-5.xsd + This schema specifies a datatype, NISTSchema-long-pattern-5, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-5-3" origin="NIST"><description> + File: NISTSchema-long-pattern-5.xsd + This schema specifies a datatype, NISTSchema-long-pattern-5, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-5-4" origin="NIST"><description> + File: NISTSchema-long-pattern-5.xsd + This schema specifies a datatype, NISTSchema-long-pattern-5, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-pattern-5-5" origin="NIST"><description> + File: NISTSchema-long-pattern-5.xsd + This schema specifies a datatype, NISTSchema-long-pattern-5, + which is derived by restriction of built-in type long + by facet pattern with a value of: \d{19} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-long-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-1, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 9532702 + -43282293860 + 58753 + 64587 + -9903684685579394 + 161900215 + -229649776898 + -773867654 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-long-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-1, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 9532702 + -43282293860 + 58753 + 64587 + -9903684685579394 + 161900215 + -229649776898 + -773867654 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-long-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-1, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 9532702 + -43282293860 + 58753 + 64587 + -9903684685579394 + 161900215 + -229649776898 + -773867654 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-long-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-1, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 9532702 + -43282293860 + 58753 + 64587 + -9903684685579394 + 161900215 + -229649776898 + -773867654 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-long-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-1, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 9532702 + -43282293860 + 58753 + 64587 + -9903684685579394 + 161900215 + -229649776898 + -773867654 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-long-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-2, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 906681821964 + 666 + 341 + 1571190344432631 + -750332 + 4151934863968584 + 61982980956153 + 1 + -1323611290485 + 178225307 + -76 + 283 + -57179399409690445 + -7 + 124277706 + 552178841 + -5 + -8038836325145880 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-long-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-2, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 906681821964 + 666 + 341 + 1571190344432631 + -750332 + 4151934863968584 + 61982980956153 + 1 + -1323611290485 + 178225307 + -76 + 283 + -57179399409690445 + -7 + 124277706 + 552178841 + -5 + -8038836325145880 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-long-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-2, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 906681821964 + 666 + 341 + 1571190344432631 + -750332 + 4151934863968584 + 61982980956153 + 1 + -1323611290485 + 178225307 + -76 + 283 + -57179399409690445 + -7 + 124277706 + 552178841 + -5 + -8038836325145880 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-long-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-2, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 906681821964 + 666 + 341 + 1571190344432631 + -750332 + 4151934863968584 + 61982980956153 + 1 + -1323611290485 + 178225307 + -76 + 283 + -57179399409690445 + -7 + 124277706 + 552178841 + -5 + -8038836325145880 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-long-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-2, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 906681821964 + 666 + 341 + 1571190344432631 + -750332 + 4151934863968584 + 61982980956153 + 1 + -1323611290485 + 178225307 + -76 + 283 + -57179399409690445 + -7 + 124277706 + 552178841 + -5 + -8038836325145880 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-long-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-3, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 57250936809695984 + -45973 + 8411400323060049 + -7 + 2182701528232 + -3 + 284532467 + 43923016513756985 + -2486748386806518 + 326 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-long-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-3, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 57250936809695984 + -45973 + 8411400323060049 + -7 + 2182701528232 + -3 + 284532467 + 43923016513756985 + -2486748386806518 + 326 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-long-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-3, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 57250936809695984 + -45973 + 8411400323060049 + -7 + 2182701528232 + -3 + 284532467 + 43923016513756985 + -2486748386806518 + 326 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-long-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-3, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 57250936809695984 + -45973 + 8411400323060049 + -7 + 2182701528232 + -3 + 284532467 + 43923016513756985 + -2486748386806518 + 326 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-long-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-3, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 57250936809695984 + -45973 + 8411400323060049 + -7 + 2182701528232 + -3 + 284532467 + 43923016513756985 + -2486748386806518 + 326 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-long-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-4, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 23837 + 69455054439135410 + 198 + 9 + -5137565 + -3899955730971704 + 2656 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-long-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-4, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 23837 + 69455054439135410 + 198 + 9 + -5137565 + -3899955730971704 + 2656 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-long-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-4, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 23837 + 69455054439135410 + 198 + 9 + -5137565 + -3899955730971704 + 2656 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-long-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-4, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 23837 + 69455054439135410 + 198 + 9 + -5137565 + -3899955730971704 + 2656 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-long-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-4, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 23837 + 69455054439135410 + 198 + 9 + -5137565 + -3899955730971704 + 2656 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-long-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-5, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 7493 + -9194233718894 + 334289 + -5849080831075259 + -73628087719515 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-long-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-5, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 7493 + -9194233718894 + 334289 + -5849080831075259 + -73628087719515 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-long-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-5, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 7493 + -9194233718894 + 334289 + -5849080831075259 + -73628087719515 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-long-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-5, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 7493 + -9194233718894 + 334289 + -5849080831075259 + -73628087719515 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-long-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-long-enumeration-5, + which is derived by restriction of built-in type long + by facet enumeration with values of: + 7493 + -9194233718894 + 334289 + -5849080831075259 + -73628087719515 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-long-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-long-whiteSpace-1, + which is derived by restriction of built-in type long + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-long-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-long-whiteSpace-1, + which is derived by restriction of built-in type long + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-long-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-long-whiteSpace-1, + which is derived by restriction of built-in type long + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-long-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-long-whiteSpace-1, + which is derived by restriction of built-in type long + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-long-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-long-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-long-whiteSpace-1, + which is derived by restriction of built-in type long + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-long-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-long-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-Name-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-1, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-Name-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-1, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-Name-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-1, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-Name-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-1, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-Name-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-1, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-Name-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-2, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-Name-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-2, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-Name-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-2, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-Name-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-2, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-Name-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-2, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 23 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-Name-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-3, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-Name-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-3, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-Name-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-3, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-Name-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-3, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-Name-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-3, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-Name-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-4, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-Name-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-4, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-Name-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-4, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-Name-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-4, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-Name-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-4, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-Name-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-5, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-Name-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-5, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-Name-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-5, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-Name-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-5, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-Name-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-maxLength-5, + which is derived by restriction of built-in type Name + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-1-1" origin="NIST"><description> + File: NISTSchema-Name-minLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-1, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-1-2" origin="NIST"><description> + File: NISTSchema-Name-minLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-1, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-1-3" origin="NIST"><description> + File: NISTSchema-Name-minLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-1, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-1-4" origin="NIST"><description> + File: NISTSchema-Name-minLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-1, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-1-5" origin="NIST"><description> + File: NISTSchema-Name-minLength-1.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-1, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-2-1" origin="NIST"><description> + File: NISTSchema-Name-minLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-2, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-2-2" origin="NIST"><description> + File: NISTSchema-Name-minLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-2, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-2-3" origin="NIST"><description> + File: NISTSchema-Name-minLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-2, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-2-4" origin="NIST"><description> + File: NISTSchema-Name-minLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-2, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-2-5" origin="NIST"><description> + File: NISTSchema-Name-minLength-2.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-2, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-3-1" origin="NIST"><description> + File: NISTSchema-Name-minLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-3, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-3-2" origin="NIST"><description> + File: NISTSchema-Name-minLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-3, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-3-3" origin="NIST"><description> + File: NISTSchema-Name-minLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-3, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-3-4" origin="NIST"><description> + File: NISTSchema-Name-minLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-3, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-3-5" origin="NIST"><description> + File: NISTSchema-Name-minLength-3.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-3, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-4-1" origin="NIST"><description> + File: NISTSchema-Name-minLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-4, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-4-2" origin="NIST"><description> + File: NISTSchema-Name-minLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-4, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-4-3" origin="NIST"><description> + File: NISTSchema-Name-minLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-4, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-4-4" origin="NIST"><description> + File: NISTSchema-Name-minLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-4, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-4-5" origin="NIST"><description> + File: NISTSchema-Name-minLength-4.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-4, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-5-1" origin="NIST"><description> + File: NISTSchema-Name-minLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-5, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-5-2" origin="NIST"><description> + File: NISTSchema-Name-minLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-5, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-5-3" origin="NIST"><description> + File: NISTSchema-Name-minLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-5, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-5-4" origin="NIST"><description> + File: NISTSchema-Name-minLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-5, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-minLength-5-5" origin="NIST"><description> + File: NISTSchema-Name-minLength-5.xsd + This schema specifies a datatype, NISTSchema-Name-minLength-5, + which is derived by restriction of built-in type Name + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-1-1" origin="NIST"><description> + File: NISTSchema-Name-length-1.xsd + This schema specifies a datatype, NISTSchema-Name-length-1, + which is derived by restriction of built-in type Name + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-1-2" origin="NIST"><description> + File: NISTSchema-Name-length-1.xsd + This schema specifies a datatype, NISTSchema-Name-length-1, + which is derived by restriction of built-in type Name + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-1-3" origin="NIST"><description> + File: NISTSchema-Name-length-1.xsd + This schema specifies a datatype, NISTSchema-Name-length-1, + which is derived by restriction of built-in type Name + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-1-4" origin="NIST"><description> + File: NISTSchema-Name-length-1.xsd + This schema specifies a datatype, NISTSchema-Name-length-1, + which is derived by restriction of built-in type Name + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-1-5" origin="NIST"><description> + File: NISTSchema-Name-length-1.xsd + This schema specifies a datatype, NISTSchema-Name-length-1, + which is derived by restriction of built-in type Name + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-2-1" origin="NIST"><description> + File: NISTSchema-Name-length-2.xsd + This schema specifies a datatype, NISTSchema-Name-length-2, + which is derived by restriction of built-in type Name + by facet length with a value of: 33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-2-2" origin="NIST"><description> + File: NISTSchema-Name-length-2.xsd + This schema specifies a datatype, NISTSchema-Name-length-2, + which is derived by restriction of built-in type Name + by facet length with a value of: 33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-2-3" origin="NIST"><description> + File: NISTSchema-Name-length-2.xsd + This schema specifies a datatype, NISTSchema-Name-length-2, + which is derived by restriction of built-in type Name + by facet length with a value of: 33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-2-4" origin="NIST"><description> + File: NISTSchema-Name-length-2.xsd + This schema specifies a datatype, NISTSchema-Name-length-2, + which is derived by restriction of built-in type Name + by facet length with a value of: 33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-2-5" origin="NIST"><description> + File: NISTSchema-Name-length-2.xsd + This schema specifies a datatype, NISTSchema-Name-length-2, + which is derived by restriction of built-in type Name + by facet length with a value of: 33 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-3-1" origin="NIST"><description> + File: NISTSchema-Name-length-3.xsd + This schema specifies a datatype, NISTSchema-Name-length-3, + which is derived by restriction of built-in type Name + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-3-2" origin="NIST"><description> + File: NISTSchema-Name-length-3.xsd + This schema specifies a datatype, NISTSchema-Name-length-3, + which is derived by restriction of built-in type Name + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-3-3" origin="NIST"><description> + File: NISTSchema-Name-length-3.xsd + This schema specifies a datatype, NISTSchema-Name-length-3, + which is derived by restriction of built-in type Name + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-3-4" origin="NIST"><description> + File: NISTSchema-Name-length-3.xsd + This schema specifies a datatype, NISTSchema-Name-length-3, + which is derived by restriction of built-in type Name + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-3-5" origin="NIST"><description> + File: NISTSchema-Name-length-3.xsd + This schema specifies a datatype, NISTSchema-Name-length-3, + which is derived by restriction of built-in type Name + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-4-1" origin="NIST"><description> + File: NISTSchema-Name-length-4.xsd + This schema specifies a datatype, NISTSchema-Name-length-4, + which is derived by restriction of built-in type Name + by facet length with a value of: 50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-4-2" origin="NIST"><description> + File: NISTSchema-Name-length-4.xsd + This schema specifies a datatype, NISTSchema-Name-length-4, + which is derived by restriction of built-in type Name + by facet length with a value of: 50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-4-3" origin="NIST"><description> + File: NISTSchema-Name-length-4.xsd + This schema specifies a datatype, NISTSchema-Name-length-4, + which is derived by restriction of built-in type Name + by facet length with a value of: 50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-4-4" origin="NIST"><description> + File: NISTSchema-Name-length-4.xsd + This schema specifies a datatype, NISTSchema-Name-length-4, + which is derived by restriction of built-in type Name + by facet length with a value of: 50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-4-5" origin="NIST"><description> + File: NISTSchema-Name-length-4.xsd + This schema specifies a datatype, NISTSchema-Name-length-4, + which is derived by restriction of built-in type Name + by facet length with a value of: 50 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-5-1" origin="NIST"><description> + File: NISTSchema-Name-length-5.xsd + This schema specifies a datatype, NISTSchema-Name-length-5, + which is derived by restriction of built-in type Name + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-5-2" origin="NIST"><description> + File: NISTSchema-Name-length-5.xsd + This schema specifies a datatype, NISTSchema-Name-length-5, + which is derived by restriction of built-in type Name + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-5-3" origin="NIST"><description> + File: NISTSchema-Name-length-5.xsd + This schema specifies a datatype, NISTSchema-Name-length-5, + which is derived by restriction of built-in type Name + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-5-4" origin="NIST"><description> + File: NISTSchema-Name-length-5.xsd + This schema specifies a datatype, NISTSchema-Name-length-5, + which is derived by restriction of built-in type Name + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-length-5-5" origin="NIST"><description> + File: NISTSchema-Name-length-5.xsd + This schema specifies a datatype, NISTSchema-Name-length-5, + which is derived by restriction of built-in type Name + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-1-1" origin="NIST"><description> + File: NISTSchema-Name-pattern-1.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-1, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{58} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-1-2" origin="NIST"><description> + File: NISTSchema-Name-pattern-1.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-1, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{58} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-1-3" origin="NIST"><description> + File: NISTSchema-Name-pattern-1.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-1, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{58} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-1-4" origin="NIST"><description> + File: NISTSchema-Name-pattern-1.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-1, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{58} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-1-5" origin="NIST"><description> + File: NISTSchema-Name-pattern-1.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-1, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{58} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-2-1" origin="NIST"><description> + File: NISTSchema-Name-pattern-2.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-2, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{21} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-2-2" origin="NIST"><description> + File: NISTSchema-Name-pattern-2.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-2, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{21} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-2-3" origin="NIST"><description> + File: NISTSchema-Name-pattern-2.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-2, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{21} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-2-4" origin="NIST"><description> + File: NISTSchema-Name-pattern-2.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-2, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{21} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-2-5" origin="NIST"><description> + File: NISTSchema-Name-pattern-2.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-2, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{21} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-3-1" origin="NIST"><description> + File: NISTSchema-Name-pattern-3.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-3, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{29} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-3-2" origin="NIST"><description> + File: NISTSchema-Name-pattern-3.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-3, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{29} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-3-3" origin="NIST"><description> + File: NISTSchema-Name-pattern-3.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-3, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{29} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-3-4" origin="NIST"><description> + File: NISTSchema-Name-pattern-3.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-3, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{29} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-3-5" origin="NIST"><description> + File: NISTSchema-Name-pattern-3.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-3, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{29} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-4-1" origin="NIST"><description> + File: NISTSchema-Name-pattern-4.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-4, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{56} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-4-2" origin="NIST"><description> + File: NISTSchema-Name-pattern-4.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-4, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{56} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-4-3" origin="NIST"><description> + File: NISTSchema-Name-pattern-4.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-4, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{56} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-4-4" origin="NIST"><description> + File: NISTSchema-Name-pattern-4.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-4, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{56} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-4-5" origin="NIST"><description> + File: NISTSchema-Name-pattern-4.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-4, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{56} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-5-1" origin="NIST"><description> + File: NISTSchema-Name-pattern-5.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-5, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{37} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-5-2" origin="NIST"><description> + File: NISTSchema-Name-pattern-5.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-5, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{37} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-5-3" origin="NIST"><description> + File: NISTSchema-Name-pattern-5.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-5, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{37} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-5-4" origin="NIST"><description> + File: NISTSchema-Name-pattern-5.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-5, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{37} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-pattern-5-5" origin="NIST"><description> + File: NISTSchema-Name-pattern-5.xsd + This schema specifies a datatype, NISTSchema-Name-pattern-5, + which is derived by restriction of built-in type Name + by facet pattern with a value of: \i\c{37} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-Name-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-1, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + cmatch.revision + _unambiguous_dissemi + yspecifications-chains_and_define.as-software-as:a-to_for-sens + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-Name-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-1, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + cmatch.revision + _unambiguous_dissemi + yspecifications-chains_and_define.as-software-as:a-to_for-sens + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-Name-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-1, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + cmatch.revision + _unambiguous_dissemi + yspecifications-chains_and_define.as-software-as:a-to_for-sens + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-Name-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-1, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + cmatch.revision + _unambiguous_dissemi + yspecifications-chains_and_define.as-software-as:a-to_for-sens + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-Name-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-1, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + cmatch.revision + _unambiguous_dissemi + yspecifications-chains_and_define.as-software-as:a-to_for-sens + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-Name-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-2, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + qthat:degree-can.and.support-d + dan:information_as.becoming:asked.partnersh + :measure_in-via:issues.on:networks:of_dynamic_in + :suites-use-and.includes-object:pr + :chain-as:including_dat + :testing-progra + :its_ability:has_information.and-of:retrieval-firs + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-Name-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-2, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + qthat:degree-can.and.support-d + dan:information_as.becoming:asked.partnersh + :measure_in-via:issues.on:networks:of_dynamic_in + :suites-use-and.includes-object:pr + :chain-as:including_dat + :testing-progra + :its_ability:has_information.and-of:retrieval-firs + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-Name-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-2, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + qthat:degree-can.and.support-d + dan:information_as.becoming:asked.partnersh + :measure_in-via:issues.on:networks:of_dynamic_in + :suites-use-and.includes-object:pr + :chain-as:including_dat + :testing-progra + :its_ability:has_information.and-of:retrieval-firs + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-Name-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-2, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + qthat:degree-can.and.support-d + dan:information_as.becoming:asked.partnersh + :measure_in-via:issues.on:networks:of_dynamic_in + :suites-use-and.includes-object:pr + :chain-as:including_dat + :testing-progra + :its_ability:has_information.and-of:retrieval-firs + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-Name-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-2, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + qthat:degree-can.and.support-d + dan:information_as.becoming:asked.partnersh + :measure_in-via:issues.on:networks:of_dynamic_in + :suites-use-and.includes-object:pr + :chain-as:including_dat + :testing-progra + :its_ability:has_information.and-of:retrieval-firs + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-Name-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-3, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + kare-of_automated:and: + rand-this-voiced:as_the.of:specifications:re + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-Name-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-3, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + kare-of_automated:and: + rand-this-voiced:as_the.of:specifications:re + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-Name-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-3, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + kare-of_automated:and: + rand-this-voiced:as_the.of:specifications:re + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-Name-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-3, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + kare-of_automated:and: + rand-this-voiced:as_the.of:specifications:re + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-Name-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-3, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + kare-of_automated:and: + rand-this-voiced:as_the.of:specifications:re + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-Name-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-4, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :the-on.that_to-compl + iis-the:this:its_ensure.of- + mfiles.organizations_and-configuratio + _busin + :that:the:the-identify-less_prototype + _ha + :computing.specifications-will_application_process.computi + dthem.popular:our-them_industr + :newco + _for.technology-wit + :soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-Name-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-4, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :the-on.that_to-compl + iis-the:this:its_ensure.of- + mfiles.organizations_and-configuratio + _busin + :that:the:the-identify-less_prototype + _ha + :computing.specifications-will_application_process.computi + dthem.popular:our-them_industr + :newco + _for.technology-wit + :soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-Name-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-4, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :the-on.that_to-compl + iis-the:this:its_ensure.of- + mfiles.organizations_and-configuratio + _busin + :that:the:the-identify-less_prototype + _ha + :computing.specifications-will_application_process.computi + dthem.popular:our-them_industr + :newco + _for.technology-wit + :soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-Name-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-4, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :the-on.that_to-compl + iis-the:this:its_ensure.of- + mfiles.organizations_and-configuratio + _busin + :that:the:the-identify-less_prototype + _ha + :computing.specifications-will_application_process.computi + dthem.popular:our-them_industr + :newco + _for.technology-wit + :soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-Name-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-4, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :the-on.that_to-compl + iis-the:this:its_ensure.of- + mfiles.organizations_and-configuratio + _busin + :that:the:the-identify-less_prototype + _ha + :computing.specifications-will_application_process.computi + dthem.popular:our-them_industr + :newco + _for.technology-wit + :soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-Name-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-5, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :key:has.to_such.obtaine + tled.documents.the-in_projector-to_and_ + _a:bus + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-Name-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-5, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :key:has.to_such.obtaine + tled.documents.the-in_projector-to_and_ + _a:bus + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-Name-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-5, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :key:has.to_such.obtaine + tled.documents.the-in_projector-to_and_ + _a:bus + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-Name-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-5, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :key:has.to_such.obtaine + tled.documents.the-in_projector-to_and_ + _a:bus + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-Name-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-Name-enumeration-5, + which is derived by restriction of built-in type Name + by facet enumeration with values of: + :key:has.to_such.obtaine + tled.documents.the-in_projector-to_and_ + _a:bus + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-Name-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-Name-whiteSpace-1, + which is derived by restriction of built-in type Name + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-Name-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-Name-whiteSpace-1, + which is derived by restriction of built-in type Name + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-Name-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-Name-whiteSpace-1, + which is derived by restriction of built-in type Name + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-Name-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-Name-whiteSpace-1, + which is derived by restriction of built-in type Name + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-Name-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-Name-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-Name-whiteSpace-1, + which is derived by restriction of built-in type Name + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-Name-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-Name-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-1, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-1, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-1, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-1, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-1, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-2, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-2, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-2, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-2, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-2, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-3, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 61 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-3, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 61 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-3, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 61 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-3, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 61 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-3, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 61 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-4, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-4, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-4, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-4, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-4, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-5, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-5, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-5, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-5, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-NCName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-maxLength-5, + which is derived by restriction of built-in type NCName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-1-1" origin="NIST"><description> + File: NISTSchema-NCName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-1, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-1-2" origin="NIST"><description> + File: NISTSchema-NCName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-1, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-1-3" origin="NIST"><description> + File: NISTSchema-NCName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-1, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-1-4" origin="NIST"><description> + File: NISTSchema-NCName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-1, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-1-5" origin="NIST"><description> + File: NISTSchema-NCName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-1, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-2-1" origin="NIST"><description> + File: NISTSchema-NCName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-2, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-2-2" origin="NIST"><description> + File: NISTSchema-NCName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-2, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-2-3" origin="NIST"><description> + File: NISTSchema-NCName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-2, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-2-4" origin="NIST"><description> + File: NISTSchema-NCName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-2, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-2-5" origin="NIST"><description> + File: NISTSchema-NCName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-2, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-3-1" origin="NIST"><description> + File: NISTSchema-NCName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-3, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-3-2" origin="NIST"><description> + File: NISTSchema-NCName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-3, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-3-3" origin="NIST"><description> + File: NISTSchema-NCName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-3, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-3-4" origin="NIST"><description> + File: NISTSchema-NCName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-3, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-3-5" origin="NIST"><description> + File: NISTSchema-NCName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-3, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-4-1" origin="NIST"><description> + File: NISTSchema-NCName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-4, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-4-2" origin="NIST"><description> + File: NISTSchema-NCName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-4, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-4-3" origin="NIST"><description> + File: NISTSchema-NCName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-4, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-4-4" origin="NIST"><description> + File: NISTSchema-NCName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-4, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-4-5" origin="NIST"><description> + File: NISTSchema-NCName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-4, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-5-1" origin="NIST"><description> + File: NISTSchema-NCName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-5, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-5-2" origin="NIST"><description> + File: NISTSchema-NCName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-5, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-5-3" origin="NIST"><description> + File: NISTSchema-NCName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-5, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-5-4" origin="NIST"><description> + File: NISTSchema-NCName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-5, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-minLength-5-5" origin="NIST"><description> + File: NISTSchema-NCName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NCName-minLength-5, + which is derived by restriction of built-in type NCName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-1-1" origin="NIST"><description> + File: NISTSchema-NCName-length-1.xsd + This schema specifies a datatype, NISTSchema-NCName-length-1, + which is derived by restriction of built-in type NCName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-1-2" origin="NIST"><description> + File: NISTSchema-NCName-length-1.xsd + This schema specifies a datatype, NISTSchema-NCName-length-1, + which is derived by restriction of built-in type NCName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-1-3" origin="NIST"><description> + File: NISTSchema-NCName-length-1.xsd + This schema specifies a datatype, NISTSchema-NCName-length-1, + which is derived by restriction of built-in type NCName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-1-4" origin="NIST"><description> + File: NISTSchema-NCName-length-1.xsd + This schema specifies a datatype, NISTSchema-NCName-length-1, + which is derived by restriction of built-in type NCName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-1-5" origin="NIST"><description> + File: NISTSchema-NCName-length-1.xsd + This schema specifies a datatype, NISTSchema-NCName-length-1, + which is derived by restriction of built-in type NCName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-2-1" origin="NIST"><description> + File: NISTSchema-NCName-length-2.xsd + This schema specifies a datatype, NISTSchema-NCName-length-2, + which is derived by restriction of built-in type NCName + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-2-2" origin="NIST"><description> + File: NISTSchema-NCName-length-2.xsd + This schema specifies a datatype, NISTSchema-NCName-length-2, + which is derived by restriction of built-in type NCName + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-2-3" origin="NIST"><description> + File: NISTSchema-NCName-length-2.xsd + This schema specifies a datatype, NISTSchema-NCName-length-2, + which is derived by restriction of built-in type NCName + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-2-4" origin="NIST"><description> + File: NISTSchema-NCName-length-2.xsd + This schema specifies a datatype, NISTSchema-NCName-length-2, + which is derived by restriction of built-in type NCName + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-2-5" origin="NIST"><description> + File: NISTSchema-NCName-length-2.xsd + This schema specifies a datatype, NISTSchema-NCName-length-2, + which is derived by restriction of built-in type NCName + by facet length with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-3-1" origin="NIST"><description> + File: NISTSchema-NCName-length-3.xsd + This schema specifies a datatype, NISTSchema-NCName-length-3, + which is derived by restriction of built-in type NCName + by facet length with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-3-2" origin="NIST"><description> + File: NISTSchema-NCName-length-3.xsd + This schema specifies a datatype, NISTSchema-NCName-length-3, + which is derived by restriction of built-in type NCName + by facet length with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-3-3" origin="NIST"><description> + File: NISTSchema-NCName-length-3.xsd + This schema specifies a datatype, NISTSchema-NCName-length-3, + which is derived by restriction of built-in type NCName + by facet length with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-3-4" origin="NIST"><description> + File: NISTSchema-NCName-length-3.xsd + This schema specifies a datatype, NISTSchema-NCName-length-3, + which is derived by restriction of built-in type NCName + by facet length with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-3-5" origin="NIST"><description> + File: NISTSchema-NCName-length-3.xsd + This schema specifies a datatype, NISTSchema-NCName-length-3, + which is derived by restriction of built-in type NCName + by facet length with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-4-1" origin="NIST"><description> + File: NISTSchema-NCName-length-4.xsd + This schema specifies a datatype, NISTSchema-NCName-length-4, + which is derived by restriction of built-in type NCName + by facet length with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-4-2" origin="NIST"><description> + File: NISTSchema-NCName-length-4.xsd + This schema specifies a datatype, NISTSchema-NCName-length-4, + which is derived by restriction of built-in type NCName + by facet length with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-4-3" origin="NIST"><description> + File: NISTSchema-NCName-length-4.xsd + This schema specifies a datatype, NISTSchema-NCName-length-4, + which is derived by restriction of built-in type NCName + by facet length with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-4-4" origin="NIST"><description> + File: NISTSchema-NCName-length-4.xsd + This schema specifies a datatype, NISTSchema-NCName-length-4, + which is derived by restriction of built-in type NCName + by facet length with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-4-5" origin="NIST"><description> + File: NISTSchema-NCName-length-4.xsd + This schema specifies a datatype, NISTSchema-NCName-length-4, + which is derived by restriction of built-in type NCName + by facet length with a value of: 41 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-5-1" origin="NIST"><description> + File: NISTSchema-NCName-length-5.xsd + This schema specifies a datatype, NISTSchema-NCName-length-5, + which is derived by restriction of built-in type NCName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-5-2" origin="NIST"><description> + File: NISTSchema-NCName-length-5.xsd + This schema specifies a datatype, NISTSchema-NCName-length-5, + which is derived by restriction of built-in type NCName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-5-3" origin="NIST"><description> + File: NISTSchema-NCName-length-5.xsd + This schema specifies a datatype, NISTSchema-NCName-length-5, + which is derived by restriction of built-in type NCName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-5-4" origin="NIST"><description> + File: NISTSchema-NCName-length-5.xsd + This schema specifies a datatype, NISTSchema-NCName-length-5, + which is derived by restriction of built-in type NCName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-length-5-5" origin="NIST"><description> + File: NISTSchema-NCName-length-5.xsd + This schema specifies a datatype, NISTSchema-NCName-length-5, + which is derived by restriction of built-in type NCName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-1-1" origin="NIST"><description> + File: NISTSchema-NCName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-1, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-1-2" origin="NIST"><description> + File: NISTSchema-NCName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-1, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-1-3" origin="NIST"><description> + File: NISTSchema-NCName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-1, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-1-4" origin="NIST"><description> + File: NISTSchema-NCName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-1, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-1-5" origin="NIST"><description> + File: NISTSchema-NCName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-1, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{38} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-2-1" origin="NIST"><description> + File: NISTSchema-NCName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-2, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-2-2" origin="NIST"><description> + File: NISTSchema-NCName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-2, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-2-3" origin="NIST"><description> + File: NISTSchema-NCName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-2, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-2-4" origin="NIST"><description> + File: NISTSchema-NCName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-2, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-2-5" origin="NIST"><description> + File: NISTSchema-NCName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-2, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-3-1" origin="NIST"><description> + File: NISTSchema-NCName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-3, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-3-2" origin="NIST"><description> + File: NISTSchema-NCName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-3, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-3-3" origin="NIST"><description> + File: NISTSchema-NCName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-3, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-3-4" origin="NIST"><description> + File: NISTSchema-NCName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-3, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-3-5" origin="NIST"><description> + File: NISTSchema-NCName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-3, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{60} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-4-1" origin="NIST"><description> + File: NISTSchema-NCName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-4, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{16} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-4-2" origin="NIST"><description> + File: NISTSchema-NCName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-4, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{16} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-4-3" origin="NIST"><description> + File: NISTSchema-NCName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-4, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{16} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-4-4" origin="NIST"><description> + File: NISTSchema-NCName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-4, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{16} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-4-5" origin="NIST"><description> + File: NISTSchema-NCName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-4, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{16} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-5-1" origin="NIST"><description> + File: NISTSchema-NCName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-5, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-5-2" origin="NIST"><description> + File: NISTSchema-NCName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-5, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-5-3" origin="NIST"><description> + File: NISTSchema-NCName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-5, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-5-4" origin="NIST"><description> + File: NISTSchema-NCName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-5, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-pattern-5-5" origin="NIST"><description> + File: NISTSchema-NCName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NCName-pattern-5, + which is derived by restriction of built-in type NCName + by facet pattern with a value of: \i\c{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-1, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + qbandwidth-and.software-use.too + _effort-disseminate_and-devices.com + _this_the-recent-over-template + _must.enforcement_allow-as.discus + _to_address_without.of.the-set.networks. + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-1, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + qbandwidth-and.software-use.too + _effort-disseminate_and-devices.com + _this_the-recent-over-template + _must.enforcement_allow-as.discus + _to_address_without.of.the-set.networks. + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-1, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + qbandwidth-and.software-use.too + _effort-disseminate_and-devices.com + _this_the-recent-over-template + _must.enforcement_allow-as.discus + _to_address_without.of.the-set.networks. + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-1, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + qbandwidth-and.software-use.too + _effort-disseminate_and-devices.com + _this_the-recent-over-template + _must.enforcement_allow-as.discus + _to_address_without.of.the-set.networks. + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-1, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + qbandwidth-and.software-use.too + _effort-disseminate_and-devices.com + _this_the-recent-over-template + _must.enforcement_allow-as.discus + _to_address_without.of.the-set.networks. + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-2, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + xfoster-a.is.information_ensure.re + _and.act-a.in_in_personal.software-tool-hardware.o + ntargeted-choices.system.co + sincorporat + itools_and_incorporate + vknown_g + jtoo + _for.recognition-will_to-defining_methods-for-having + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-2, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + xfoster-a.is.information_ensure.re + _and.act-a.in_in_personal.software-tool-hardware.o + ntargeted-choices.system.co + sincorporat + itools_and_incorporate + vknown_g + jtoo + _for.recognition-will_to-defining_methods-for-having + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-2, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + xfoster-a.is.information_ensure.re + _and.act-a.in_in_personal.software-tool-hardware.o + ntargeted-choices.system.co + sincorporat + itools_and_incorporate + vknown_g + jtoo + _for.recognition-will_to-defining_methods-for-having + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-2, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + xfoster-a.is.information_ensure.re + _and.act-a.in_in_personal.software-tool-hardware.o + ntargeted-choices.system.co + sincorporat + itools_and_incorporate + vknown_g + jtoo + _for.recognition-will_to-defining_methods-for-having + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-2, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + xfoster-a.is.information_ensure.re + _and.act-a.in_in_personal.software-tool-hardware.o + ntargeted-choices.system.co + sincorporat + itools_and_incorporate + vknown_g + jtoo + _for.recognition-will_to-defining_methods-for-having + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-3, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _leader + qand_the.trans + dvirtually.structured.by.is-of_to.acces + fas.envir + _of-international_wi + nnetworking_for-database.can_market-with-has. + _help_in-such-simplicity-directions_ef + _devices-discovery- + vwell.and + _significant_the_has_via.will_involved.sense_work + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-3, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _leader + qand_the.trans + dvirtually.structured.by.is-of_to.acces + fas.envir + _of-international_wi + nnetworking_for-database.can_market-with-has. + _help_in-such-simplicity-directions_ef + _devices-discovery- + vwell.and + _significant_the_has_via.will_involved.sense_work + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-3, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _leader + qand_the.trans + dvirtually.structured.by.is-of_to.acces + fas.envir + _of-international_wi + nnetworking_for-database.can_market-with-has. + _help_in-such-simplicity-directions_ef + _devices-discovery- + vwell.and + _significant_the_has_via.will_involved.sense_work + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-3, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _leader + qand_the.trans + dvirtually.structured.by.is-of_to.acces + fas.envir + _of-international_wi + nnetworking_for-database.can_market-with-has. + _help_in-such-simplicity-directions_ef + _devices-discovery- + vwell.and + _significant_the_has_via.will_involved.sense_work + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-3, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _leader + qand_the.trans + dvirtually.structured.by.is-of_to.acces + fas.envir + _of-international_wi + nnetworking_for-database.can_market-with-has. + _help_in-such-simplicity-directions_ef + _devices-discovery- + vwell.and + _significant_the_has_via.will_involved.sense_work + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-4, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + fthe-reach_documents_newcome + _industries-intelligent_in-tha + ui + _by.is-called_it-documents-way_on + nwith_donate_building.as-between_di + _software_enable-of.creation.a_wireless.of-reposito + _on-include-g_a_computing.are.h + pfilter-the.te + adefine-computing.tes + rfile-with.effectively_pr + ppartnerships.some.and.web.bus + _environment.of_standardizatio + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-4, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + fthe-reach_documents_newcome + _industries-intelligent_in-tha + ui + _by.is-called_it-documents-way_on + nwith_donate_building.as-between_di + _software_enable-of.creation.a_wireless.of-reposito + _on-include-g_a_computing.are.h + pfilter-the.te + adefine-computing.tes + rfile-with.effectively_pr + ppartnerships.some.and.web.bus + _environment.of_standardizatio + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-4, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + fthe-reach_documents_newcome + _industries-intelligent_in-tha + ui + _by.is-called_it-documents-way_on + nwith_donate_building.as-between_di + _software_enable-of.creation.a_wireless.of-reposito + _on-include-g_a_computing.are.h + pfilter-the.te + adefine-computing.tes + rfile-with.effectively_pr + ppartnerships.some.and.web.bus + _environment.of_standardizatio + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-4, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + fthe-reach_documents_newcome + _industries-intelligent_in-tha + ui + _by.is-called_it-documents-way_on + nwith_donate_building.as-between_di + _software_enable-of.creation.a_wireless.of-reposito + _on-include-g_a_computing.are.h + pfilter-the.te + adefine-computing.tes + rfile-with.effectively_pr + ppartnerships.some.and.web.bus + _environment.of_standardizatio + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-4, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + fthe-reach_documents_newcome + _industries-intelligent_in-tha + ui + _by.is-called_it-documents-way_on + nwith_donate_building.as-between_di + _software_enable-of.creation.a_wireless.of-reposito + _on-include-g_a_computing.are.h + pfilter-the.te + adefine-computing.tes + rfile-with.effectively_pr + ppartnerships.some.and.web.bus + _environment.of_standardizatio + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-5, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _not_industry-the_templates_recommendation_in-c + kthe.of.such-this-meet.and-and-exerc + _templates.related-each.wireless-in_inform + sand.of_reference-the.be_repository_popular-provide-o + xsoftware.and_as.technologies.for-must.are_software.of-its_t + _result-by_business_those.wa + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-5, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _not_industry-the_templates_recommendation_in-c + kthe.of.such-this-meet.and-and-exerc + _templates.related-each.wireless-in_inform + sand.of_reference-the.be_repository_popular-provide-o + xsoftware.and_as.technologies.for-must.are_software.of-its_t + _result-by_business_those.wa + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-5, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _not_industry-the_templates_recommendation_in-c + kthe.of.such-this-meet.and-and-exerc + _templates.related-each.wireless-in_inform + sand.of_reference-the.be_repository_popular-provide-o + xsoftware.and_as.technologies.for-must.are_software.of-its_t + _result-by_business_those.wa + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-5, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _not_industry-the_templates_recommendation_in-c + kthe.of.such-this-meet.and-and-exerc + _templates.related-each.wireless-in_inform + sand.of_reference-the.be_repository_popular-provide-o + xsoftware.and_as.technologies.for-must.are_software.of-its_t + _result-by_business_those.wa + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-NCName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NCName-enumeration-5, + which is derived by restriction of built-in type NCName + by facet enumeration with values of: + _not_industry-the_templates_recommendation_in-c + kthe.of.such-this-meet.and-and-exerc + _templates.related-each.wireless-in_inform + sand.of_reference-the.be_repository_popular-provide-o + xsoftware.and_as.technologies.for-must.are_software.of-its_t + _result-by_business_those.wa + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-NCName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NCName-whiteSpace-1, + which is derived by restriction of built-in type NCName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-NCName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NCName-whiteSpace-1, + which is derived by restriction of built-in type NCName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-NCName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NCName-whiteSpace-1, + which is derived by restriction of built-in type NCName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-NCName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NCName-whiteSpace-1, + which is derived by restriction of built-in type NCName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NCName-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-NCName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NCName-whiteSpace-1, + which is derived by restriction of built-in type NCName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NCName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NCName-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -53454865742790402817 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -53454865742790402817 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -53454865742790402817 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -53454865742790402817 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -53454865742790402817 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -49567016725797263811 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -49567016725797263811 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -49567016725797263811 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -49567016725797263811 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -49567016725797263811 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -88651049463528008854 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -88651049463528008854 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -88651049463528008854 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -88651049463528008854 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -88651049463528008854 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet minExclusive with a value of: -2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -82809037899801307692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -82809037899801307692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -82809037899801307692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -82809037899801307692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -82809037899801307692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -80659696192644869672 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -80659696192644869672 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -80659696192644869672 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -80659696192644869672 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -80659696192644869672 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -78910736693334038172 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -78910736693334038172 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -78910736693334038172 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -78910736693334038172 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -78910736693334038172 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-minInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet minInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -93214229475564414072 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -93214229475564414072 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -93214229475564414072 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -93214229475564414072 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -93214229475564414072 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -25045279194437797266 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -25045279194437797266 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -25045279194437797266 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -25045279194437797266 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -25045279194437797266 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -22523986969493625666 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -22523986969493625666 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -22523986969493625666 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -22523986969493625666 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -22523986969493625666 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxExclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-1, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -41157563552652987050 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -41157563552652987050 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -41157563552652987050 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -41157563552652987050 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-2, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -41157563552652987050 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -36850988652254268452 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -36850988652254268452 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -36850988652254268452 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -36850988652254268452 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-3, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -36850988652254268452 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -51682693576264648883 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -51682693576264648883 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -51682693576264648883 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -51682693576264648883 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-4, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -51682693576264648883 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-maxInclusive-5, + which is derived by restriction of built-in type negativeInteger + by facet maxInclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-fractionDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-fractionDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-fractionDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-fractionDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-fractionDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-1, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-2, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-2, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-2, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-2, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-2, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-3, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-3, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-3, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-3, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-3, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-4, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-4, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-4, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-4, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-4, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-5, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-5, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-5, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-5, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-totalDigits-5, + which is derived by restriction of built-in type negativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-1, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-1, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-1, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-1, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-1, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-2, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-2, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-2, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-2, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-2, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-3, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-3, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-3, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-3, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-3, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-4, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-4, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-4, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-4, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-4, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-5, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-5-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-5, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-5-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-5, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-5-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-5, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-pattern-5-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-pattern-5, + which is derived by restriction of built-in type negativeInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-1, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -59 + -1100366 + -27354619498689081 + -528658858 + -4155613 + -998174005610134473 + -709647298338194731 + -5195709623 + -246111632071438 + -16605891804330308 + -716908467 + -7631138542947550895 + -3027941073677 + -4233598 + -7729606 + -53236688 + -67291024 + -716648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-1, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -59 + -1100366 + -27354619498689081 + -528658858 + -4155613 + -998174005610134473 + -709647298338194731 + -5195709623 + -246111632071438 + -16605891804330308 + -716908467 + -7631138542947550895 + -3027941073677 + -4233598 + -7729606 + -53236688 + -67291024 + -716648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-1, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -59 + -1100366 + -27354619498689081 + -528658858 + -4155613 + -998174005610134473 + -709647298338194731 + -5195709623 + -246111632071438 + -16605891804330308 + -716908467 + -7631138542947550895 + -3027941073677 + -4233598 + -7729606 + -53236688 + -67291024 + -716648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-1, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -59 + -1100366 + -27354619498689081 + -528658858 + -4155613 + -998174005610134473 + -709647298338194731 + -5195709623 + -246111632071438 + -16605891804330308 + -716908467 + -7631138542947550895 + -3027941073677 + -4233598 + -7729606 + -53236688 + -67291024 + -716648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-1, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -59 + -1100366 + -27354619498689081 + -528658858 + -4155613 + -998174005610134473 + -709647298338194731 + -5195709623 + -246111632071438 + -16605891804330308 + -716908467 + -7631138542947550895 + -3027941073677 + -4233598 + -7729606 + -53236688 + -67291024 + -716648 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-2, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -24 + -28 + -7127029153362820501 + -9402547123585005 + -62374502610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-2, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -24 + -28 + -7127029153362820501 + -9402547123585005 + -62374502610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-2, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -24 + -28 + -7127029153362820501 + -9402547123585005 + -62374502610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-2, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -24 + -28 + -7127029153362820501 + -9402547123585005 + -62374502610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-2, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -24 + -28 + -7127029153362820501 + -9402547123585005 + -62374502610 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-3, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -158330 + -84064202771023233 + -11294087 + -3292232380529787 + -12694565153442161076 + -755 + -472862764 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-3, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -158330 + -84064202771023233 + -11294087 + -3292232380529787 + -12694565153442161076 + -755 + -472862764 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-3, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -158330 + -84064202771023233 + -11294087 + -3292232380529787 + -12694565153442161076 + -755 + -472862764 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-3, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -158330 + -84064202771023233 + -11294087 + -3292232380529787 + -12694565153442161076 + -755 + -472862764 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-3, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -158330 + -84064202771023233 + -11294087 + -3292232380529787 + -12694565153442161076 + -755 + -472862764 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-4, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -1278610 + -8580051571828295475 + -6159642390316 + -1779482 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-4, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -1278610 + -8580051571828295475 + -6159642390316 + -1779482 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-4, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -1278610 + -8580051571828295475 + -6159642390316 + -1779482 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-4, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -1278610 + -8580051571828295475 + -6159642390316 + -1779482 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-4, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -1278610 + -8580051571828295475 + -6159642390316 + -1779482 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-5, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -15910157693250 + -403229865 + -91105245692454550 + -74265978 + -67687219685380251021 + -613194 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-5, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -15910157693250 + -403229865 + -91105245692454550 + -74265978 + -67687219685380251021 + -613194 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-5, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -15910157693250 + -403229865 + -91105245692454550 + -74265978 + -67687219685380251021 + -613194 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-5, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -15910157693250 + -403229865 + -91105245692454550 + -74265978 + -67687219685380251021 + -613194 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-enumeration-5, + which is derived by restriction of built-in type negativeInteger + by facet enumeration with values of: + -15910157693250 + -403229865 + -91105245692454550 + -74265978 + -67687219685380251021 + -613194 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-negativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-whiteSpace-1, + which is derived by restriction of built-in type negativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-negativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-whiteSpace-1, + which is derived by restriction of built-in type negativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-negativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-whiteSpace-1, + which is derived by restriction of built-in type negativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-negativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-whiteSpace-1, + which is derived by restriction of built-in type negativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-negativeInteger-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-negativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-negativeInteger-whiteSpace-1, + which is derived by restriction of built-in type negativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-negativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-negativeInteger-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 14 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-maxLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-1, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-2-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-2-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-2-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-2-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-2-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-2, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-3-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-3-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-3-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-3-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-3-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-3, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 42 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-4-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-4-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-4-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-4-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-4-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-4, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-5-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-5-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-5-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-5-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-minLength-5-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-minLength-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-minLength-5, + which is derived by restriction of built-in type NMTOKEN + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-1, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-1, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-1, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-1, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-1, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-2-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-2, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-2-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-2, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-2-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-2, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-2-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-2, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-2-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-2, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-3-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-3, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-3-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-3, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-3-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-3, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-3-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-3, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-3-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-3, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 34 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-4-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-4, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-4-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-4, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-4-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-4, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-4-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-4, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-4-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-4, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 16 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-5-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-5, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-5-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-5, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-5-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-5, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-5-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-5, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-length-5-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-length-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-length-5, + which is derived by restriction of built-in type NMTOKEN + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-1, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-1, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-1, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-1, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-1, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-2-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-2, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{26} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-2-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-2, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{26} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-2-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-2, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{26} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-2-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-2, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{26} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-2-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-2, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{26} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-3-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-3, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-3-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-3, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-3-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-3, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-3-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-3, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-3-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-3, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-4-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-4, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{22} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-4-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-4, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{22} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-4-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-4, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{22} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-4-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-4, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{22} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-4-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-4, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{22} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-5-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-5, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{33} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-5-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-5, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{33} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-5-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-5, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{33} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-5-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-5, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{33} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-pattern-5-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-pattern-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-pattern-5, + which is derived by restriction of built-in type NMTOKEN + by facet pattern with a value of: \c{33} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-1, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + developmen + file + DOM:co + issues_of:XML_and-w + business-enforcement::link-chain.commun + templa + global_two.be_life-in.of-files_a + s + bottlenecks.Reference.known_information_back.systems.wireles + the:the:g-the_high.our:and-for.heterogeneous-Extensi + to_ways_interconnected:computed: + of.achieved_set.build-foster_Sp + has-systems-of-pico-cellular.be:the.impact:and_protot + are-the-define_the-today_guidelin + and.virtu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-1, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + developmen + file + DOM:co + issues_of:XML_and-w + business-enforcement::link-chain.commun + templa + global_two.be_life-in.of-files_a + s + bottlenecks.Reference.known_information_back.systems.wireles + the:the:g-the_high.our:and-for.heterogeneous-Extensi + to_ways_interconnected:computed: + of.achieved_set.build-foster_Sp + has-systems-of-pico-cellular.be:the.impact:and_protot + are-the-define_the-today_guidelin + and.virtu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-1, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + developmen + file + DOM:co + issues_of:XML_and-w + business-enforcement::link-chain.commun + templa + global_two.be_life-in.of-files_a + s + bottlenecks.Reference.known_information_back.systems.wireles + the:the:g-the_high.our:and-for.heterogeneous-Extensi + to_ways_interconnected:computed: + of.achieved_set.build-foster_Sp + has-systems-of-pico-cellular.be:the.impact:and_protot + are-the-define_the-today_guidelin + and.virtu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-1, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + developmen + file + DOM:co + issues_of:XML_and-w + business-enforcement::link-chain.commun + templa + global_two.be_life-in.of-files_a + s + bottlenecks.Reference.known_information_back.systems.wireles + the:the:g-the_high.our:and-for.heterogeneous-Extensi + to_ways_interconnected:computed: + of.achieved_set.build-foster_Sp + has-systems-of-pico-cellular.be:the.impact:and_protot + are-the-define_the-today_guidelin + and.virtu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-1, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + developmen + file + DOM:co + issues_of:XML_and-w + business-enforcement::link-chain.commun + templa + global_two.be_life-in.of-files_a + s + bottlenecks.Reference.known_information_back.systems.wireles + the:the:g-the_high.our:and-for.heterogeneous-Extensi + to_ways_interconnected:computed: + of.achieved_set.build-foster_Sp + has-systems-of-pico-cellular.be:the.impact:and_protot + are-the-define_the-today_guidelin + and.virtu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-2, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + used-systems-system-applications:The: + to_XML-related:provide:bandwidth_of-file_the:the:t + suite.Communit + are.about_to:tech + industry:complete.to_one-disc + of-international.specifications.effectively_certain_of:Acade + and:XML.solve_of_need_associated-particularly.on.issues.specifi + In.standards-for.and-has:areas-possib + in_software.joint_language:software.industr + medium-sized:for-lies.s + filter_also-can_robust_Language:soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-2, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + used-systems-system-applications:The: + to_XML-related:provide:bandwidth_of-file_the:the:t + suite.Communit + are.about_to:tech + industry:complete.to_one-disc + of-international.specifications.effectively_certain_of:Acade + and:XML.solve_of_need_associated-particularly.on.issues.specifi + In.standards-for.and-has:areas-possib + in_software.joint_language:software.industr + medium-sized:for-lies.s + filter_also-can_robust_Language:soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-2, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + used-systems-system-applications:The: + to_XML-related:provide:bandwidth_of-file_the:the:t + suite.Communit + are.about_to:tech + industry:complete.to_one-disc + of-international.specifications.effectively_certain_of:Acade + and:XML.solve_of_need_associated-particularly.on.issues.specifi + In.standards-for.and-has:areas-possib + in_software.joint_language:software.industr + medium-sized:for-lies.s + filter_also-can_robust_Language:soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-2, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + used-systems-system-applications:The: + to_XML-related:provide:bandwidth_of-file_the:the:t + suite.Communit + are.about_to:tech + industry:complete.to_one-disc + of-international.specifications.effectively_certain_of:Acade + and:XML.solve_of_need_associated-particularly.on.issues.specifi + In.standards-for.and-has:areas-possib + in_software.joint_language:software.industr + medium-sized:for-lies.s + filter_also-can_robust_Language:soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-2, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + used-systems-system-applications:The: + to_XML-related:provide:bandwidth_of-file_the:the:t + suite.Communit + are.about_to:tech + industry:complete.to_one-disc + of-international.specifications.effectively_certain_of:Acade + and:XML.solve_of_need_associated-particularly.on.issues.specifi + In.standards-for.and-has:areas-possib + in_software.joint_language:software.industr + medium-sized:for-lies.s + filter_also-can_robust_Language:soft + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-3, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + wireless:is:that.to:care:partnersh + transactiona + through:networking-the:It_used:vocabularies-has_as.files_manip + A.also: + industry.pro + EXiST:the.files-indust + th + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-3, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + wireless:is:that.to:care:partnersh + transactiona + through:networking-the:It_used:vocabularies-has_as.files_manip + A.also: + industry.pro + EXiST:the.files-indust + th + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-3, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + wireless:is:that.to:care:partnersh + transactiona + through:networking-the:It_used:vocabularies-has_as.files_manip + A.also: + industry.pro + EXiST:the.files-indust + th + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-3, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + wireless:is:that.to:care:partnersh + transactiona + through:networking-the:It_used:vocabularies-has_as.files_manip + A.also: + industry.pro + EXiST:the.files-indust + th + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-3, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + wireless:is:that.to:care:partnersh + transactiona + through:networking-the:It_used:vocabularies-has_as.files_manip + A.also: + industry.pro + EXiST:the.files-indust + th + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-4, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + XML_discovery-outfitting:partnerships-to-information + range_create-groups:law-OASIS-m + and.able-choices-results_that_being.In + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-4, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + XML_discovery-outfitting:partnerships-to-information + range_create-groups:law-OASIS-m + and.able-choices-results_that_being.In + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-4, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + XML_discovery-outfitting:partnerships-to-information + range_create-groups:law-OASIS-m + and.able-choices-results_that_being.In + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-5, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + Information-and_establish:app + from-the.between.body_between.domains:and.and.EXiST:way.objec + enough-such:filte + as:a.with-over_certain-key-choices.information.are_match + paradigm.applications_to_consortium.Pervasive_shift + structured:computing.better_objective:of.EC:formed-m + files_leadership.to-good_the_of-Schemas.the:come:quality:wirel + contributor.a_data:personal_application_t + mediums.A-used_desktop_simulation_not-visibly:support.older-a + working:promises-to:from-degree_used.XML:we + called_can-these_U_consortium.Virtually_OASIS_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-5, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + Information-and_establish:app + from-the.between.body_between.domains:and.and.EXiST:way.objec + enough-such:filte + as:a.with-over_certain-key-choices.information.are_match + paradigm.applications_to_consortium.Pervasive_shift + structured:computing.better_objective:of.EC:formed-m + files_leadership.to-good_the_of-Schemas.the:come:quality:wirel + contributor.a_data:personal_application_t + mediums.A-used_desktop_simulation_not-visibly:support.older-a + working:promises-to:from-degree_used.XML:we + called_can-these_U_consortium.Virtually_OASIS_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-5, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + Information-and_establish:app + from-the.between.body_between.domains:and.and.EXiST:way.objec + enough-such:filte + as:a.with-over_certain-key-choices.information.are_match + paradigm.applications_to_consortium.Pervasive_shift + structured:computing.better_objective:of.EC:formed-m + files_leadership.to-good_the_of-Schemas.the:come:quality:wirel + contributor.a_data:personal_application_t + mediums.A-used_desktop_simulation_not-visibly:support.older-a + working:promises-to:from-degree_used.XML:we + called_can-these_U_consortium.Virtually_OASIS_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-5, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + Information-and_establish:app + from-the.between.body_between.domains:and.and.EXiST:way.objec + enough-such:filte + as:a.with-over_certain-key-choices.information.are_match + paradigm.applications_to_consortium.Pervasive_shift + structured:computing.better_objective:of.EC:formed-m + files_leadership.to-good_the_of-Schemas.the:come:quality:wirel + contributor.a_data:personal_application_t + mediums.A-used_desktop_simulation_not-visibly:support.older-a + working:promises-to:from-degree_used.XML:we + called_can-these_U_consortium.Virtually_OASIS_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-enumeration-5, + which is derived by restriction of built-in type NMTOKEN + by facet enumeration with values of: + Information-and_establish:app + from-the.between.body_between.domains:and.and.EXiST:way.objec + enough-such:filte + as:a.with-over_certain-key-choices.information.are_match + paradigm.applications_to_consortium.Pervasive_shift + structured:computing.better_objective:of.EC:formed-m + files_leadership.to-good_the_of-Schemas.the:come:quality:wirel + contributor.a_data:personal_application_t + mediums.A-used_desktop_simulation_not-visibly:support.older-a + working:promises-to:from-degree_used.XML:we + called_can-these_U_consortium.Virtually_OASIS_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-NMTOKEN-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-whiteSpace-1, + which is derived by restriction of built-in type NMTOKEN + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-NMTOKEN-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-whiteSpace-1, + which is derived by restriction of built-in type NMTOKEN + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-NMTOKEN-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-whiteSpace-1, + which is derived by restriction of built-in type NMTOKEN + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-NMTOKEN-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-whiteSpace-1, + which is derived by restriction of built-in type NMTOKEN + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-NMTOKEN-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-NMTOKEN-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-NMTOKEN-whiteSpace-1, + which is derived by restriction of built-in type NMTOKEN + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-NMTOKEN-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-NMTOKEN-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 45389918782225913139 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 45389918782225913139 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 45389918782225913139 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 45389918782225913139 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 45389918782225913139 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 13233459957655535621 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 13233459957655535621 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 13233459957655535621 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 13233459957655535621 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 13233459957655535621 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 30203263381174283441 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 30203263381174283441 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 30203263381174283441 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 30203263381174283441 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 30203263381174283441 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet minExclusive with a value of: 99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 88812455549057300884 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 88812455549057300884 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 88812455549057300884 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 88812455549057300884 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 88812455549057300884 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 67816630727910343078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 67816630727910343078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 67816630727910343078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 67816630727910343078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 67816630727910343078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 41063529153863720377 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 41063529153863720377 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 41063529153863720377 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 41063529153863720377 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 41063529153863720377 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-minInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet minInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 93113652334413288257 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 93113652334413288257 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 93113652334413288257 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 93113652334413288257 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 93113652334413288257 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 14738104862981882271 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 14738104862981882271 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 14738104862981882271 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 14738104862981882271 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 14738104862981882271 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 16150080691773238684 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 16150080691773238684 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 16150080691773238684 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 16150080691773238684 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 16150080691773238684 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxExclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 66050531491002428818 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 66050531491002428818 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 66050531491002428818 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 66050531491002428818 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 66050531491002428818 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 11611768598194061041 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 11611768598194061041 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 11611768598194061041 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 11611768598194061041 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 11611768598194061041 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 98481126376558447698 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 98481126376558447698 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 98481126376558447698 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 98481126376558447698 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 98481126376558447698 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-maxInclusive-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-fractionDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-fractionDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-fractionDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-fractionDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-fractionDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-totalDigits-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-5-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-5-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-5-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-pattern-5-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-pattern-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9321931380195476180 + 155 + 6832319342 + 790242419519860628 + 74821303068 + 802253307212 + 5645362160 + 49933966064489 + 70415323 + 87607 + 841230106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9321931380195476180 + 155 + 6832319342 + 790242419519860628 + 74821303068 + 802253307212 + 5645362160 + 49933966064489 + 70415323 + 87607 + 841230106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9321931380195476180 + 155 + 6832319342 + 790242419519860628 + 74821303068 + 802253307212 + 5645362160 + 49933966064489 + 70415323 + 87607 + 841230106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9321931380195476180 + 155 + 6832319342 + 790242419519860628 + 74821303068 + 802253307212 + 5645362160 + 49933966064489 + 70415323 + 87607 + 841230106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9321931380195476180 + 155 + 6832319342 + 790242419519860628 + 74821303068 + 802253307212 + 5645362160 + 49933966064489 + 70415323 + 87607 + 841230106 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 22623 + 325252720 + 934502487690048289 + 1116975889913 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 22623 + 325252720 + 934502487690048289 + 1116975889913 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 22623 + 325252720 + 934502487690048289 + 1116975889913 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 22623 + 325252720 + 934502487690048289 + 1116975889913 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-2, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 22623 + 325252720 + 934502487690048289 + 1116975889913 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 89442 + 71416297 + 9974762165 + 4332563941740885660 + 831312305303008 + 41126572857 + 4481793984707803 + 153848637685685 + 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 89442 + 71416297 + 9974762165 + 4332563941740885660 + 831312305303008 + 41126572857 + 4481793984707803 + 153848637685685 + 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 89442 + 71416297 + 9974762165 + 4332563941740885660 + 831312305303008 + 41126572857 + 4481793984707803 + 153848637685685 + 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 89442 + 71416297 + 9974762165 + 4332563941740885660 + 831312305303008 + 41126572857 + 4481793984707803 + 153848637685685 + 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-3, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 89442 + 71416297 + 9974762165 + 4332563941740885660 + 831312305303008 + 41126572857 + 4481793984707803 + 153848637685685 + 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 7214509 + 89114039860 + 1570 + 69388538264267 + 917798630101275159 + 760 + 8684643949390542516 + 62 + 5037292910150 + 7281341990930528806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 7214509 + 89114039860 + 1570 + 69388538264267 + 917798630101275159 + 760 + 8684643949390542516 + 62 + 5037292910150 + 7281341990930528806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 7214509 + 89114039860 + 1570 + 69388538264267 + 917798630101275159 + 760 + 8684643949390542516 + 62 + 5037292910150 + 7281341990930528806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 7214509 + 89114039860 + 1570 + 69388538264267 + 917798630101275159 + 760 + 8684643949390542516 + 62 + 5037292910150 + 7281341990930528806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-4, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 7214509 + 89114039860 + 1570 + 69388538264267 + 917798630101275159 + 760 + 8684643949390542516 + 62 + 5037292910150 + 7281341990930528806 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9 + 4610567 + 9981581232 + 1260920437986197 + 39987 + 902005668273 + 3 + 72 + 1269696497597 + 71005 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9 + 4610567 + 9981581232 + 1260920437986197 + 39987 + 902005668273 + 3 + 72 + 1269696497597 + 71005 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9 + 4610567 + 9981581232 + 1260920437986197 + 39987 + 902005668273 + 3 + 72 + 1269696497597 + 71005 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9 + 4610567 + 9981581232 + 1260920437986197 + 39987 + 902005668273 + 3 + 72 + 1269696497597 + 71005 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-enumeration-5, + which is derived by restriction of built-in type nonNegativeInteger + by facet enumeration with values of: + 9 + 4610567 + 9981581232 + 1260920437986197 + 39987 + 902005668273 + 3 + 72 + 1269696497597 + 71005 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-whiteSpace-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-whiteSpace-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-whiteSpace-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-whiteSpace-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonNegativeInteger-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-nonNegativeInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonNegativeInteger-whiteSpace-1, + which is derived by restriction of built-in type nonNegativeInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonNegativeInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonNegativeInteger-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -88386197527684451369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -88386197527684451369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -88386197527684451369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -88386197527684451369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -88386197527684451369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -64565596572640593376 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -64565596572640593376 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -64565596572640593376 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -64565596572640593376 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -64565596572640593376 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -990226385260806198 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -990226385260806198 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -990226385260806198 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -990226385260806198 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -990226385260806198 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet minExclusive with a value of: -1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -55422832082015316413 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -55422832082015316413 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -55422832082015316413 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -55422832082015316413 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -55422832082015316413 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -89124310154329910993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -89124310154329910993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -89124310154329910993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -89124310154329910993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -89124310154329910993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -15842681987220108564 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -15842681987220108564 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -15842681987220108564 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -15842681987220108564 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: -15842681987220108564 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-minInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -10092813496751540381 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -10092813496751540381 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -10092813496751540381 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -10092813496751540381 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -10092813496751540381 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -52653563645407630566 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -52653563645407630566 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -52653563645407630566 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -52653563645407630566 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -52653563645407630566 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -72891242177072146368 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -72891242177072146368 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -72891242177072146368 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -72891242177072146368 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: -72891242177072146368 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxExclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -34973757046174991370 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -34973757046174991370 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -34973757046174991370 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -34973757046174991370 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -34973757046174991370 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -45811586620598621078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -45811586620598621078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -45811586620598621078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -45811586620598621078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -45811586620598621078 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -75478927491056568843 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -75478927491056568843 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -75478927491056568843 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -75478927491056568843 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: -75478927491056568843 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-maxInclusive-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-fractionDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-fractionDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-fractionDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-fractionDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-fractionDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-totalDigits-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-5-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-5-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-5-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-pattern-5-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-pattern-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet pattern with a value of: \-\d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -17416230241 + -8643589967190224987 + -676843 + -497359738618 + -45554400334776878 + -8782453402663260577 + -1874884102 + -941995830152 + -72 + -117573 + -1437611345877 + -51399307227677 + -821329 + -716997651572763294 + -39713096218389 + -8095 + -905538 + -69233349799300 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -17416230241 + -8643589967190224987 + -676843 + -497359738618 + -45554400334776878 + -8782453402663260577 + -1874884102 + -941995830152 + -72 + -117573 + -1437611345877 + -51399307227677 + -821329 + -716997651572763294 + -39713096218389 + -8095 + -905538 + -69233349799300 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -17416230241 + -8643589967190224987 + -676843 + -497359738618 + -45554400334776878 + -8782453402663260577 + -1874884102 + -941995830152 + -72 + -117573 + -1437611345877 + -51399307227677 + -821329 + -716997651572763294 + -39713096218389 + -8095 + -905538 + -69233349799300 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -17416230241 + -8643589967190224987 + -676843 + -497359738618 + -45554400334776878 + -8782453402663260577 + -1874884102 + -941995830152 + -72 + -117573 + -1437611345877 + -51399307227677 + -821329 + -716997651572763294 + -39713096218389 + -8095 + -905538 + -69233349799300 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -17416230241 + -8643589967190224987 + -676843 + -497359738618 + -45554400334776878 + -8782453402663260577 + -1874884102 + -941995830152 + -72 + -117573 + -1437611345877 + -51399307227677 + -821329 + -716997651572763294 + -39713096218389 + -8095 + -905538 + -69233349799300 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -36790351 + -9536292570798643 + -735 + -639880849 + -48068351 + -486870082564 + -933729424328660795 + -25282 + -42267284412909 + -487186 + -72407883950575402387 + -292970 + -91546 + -1485772544768115 + -657764669242 + -40100307615 + -39 + -5103790676 + -4250214 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -36790351 + -9536292570798643 + -735 + -639880849 + -48068351 + -486870082564 + -933729424328660795 + -25282 + -42267284412909 + -487186 + -72407883950575402387 + -292970 + -91546 + -1485772544768115 + -657764669242 + -40100307615 + -39 + -5103790676 + -4250214 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -36790351 + -9536292570798643 + -735 + -639880849 + -48068351 + -486870082564 + -933729424328660795 + -25282 + -42267284412909 + -487186 + -72407883950575402387 + -292970 + -91546 + -1485772544768115 + -657764669242 + -40100307615 + -39 + -5103790676 + -4250214 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -36790351 + -9536292570798643 + -735 + -639880849 + -48068351 + -486870082564 + -933729424328660795 + -25282 + -42267284412909 + -487186 + -72407883950575402387 + -292970 + -91546 + -1485772544768115 + -657764669242 + -40100307615 + -39 + -5103790676 + -4250214 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-2, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -36790351 + -9536292570798643 + -735 + -639880849 + -48068351 + -486870082564 + -933729424328660795 + -25282 + -42267284412909 + -487186 + -72407883950575402387 + -292970 + -91546 + -1485772544768115 + -657764669242 + -40100307615 + -39 + -5103790676 + -4250214 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -3919904635 + -63138705583563592416 + -2239064154322201183 + -2740958126 + -12325167233030365 + -47241706458001320179 + -279877904 + -5388354862547 + -79448671068132936667 + -5922792943 + -520 + -76541665064745001 + -2351272 + -6196210158 + -6275513303165 + -837924124793825164 + -690310540885036294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -3919904635 + -63138705583563592416 + -2239064154322201183 + -2740958126 + -12325167233030365 + -47241706458001320179 + -279877904 + -5388354862547 + -79448671068132936667 + -5922792943 + -520 + -76541665064745001 + -2351272 + -6196210158 + -6275513303165 + -837924124793825164 + -690310540885036294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -3919904635 + -63138705583563592416 + -2239064154322201183 + -2740958126 + -12325167233030365 + -47241706458001320179 + -279877904 + -5388354862547 + -79448671068132936667 + -5922792943 + -520 + -76541665064745001 + -2351272 + -6196210158 + -6275513303165 + -837924124793825164 + -690310540885036294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -3919904635 + -63138705583563592416 + -2239064154322201183 + -2740958126 + -12325167233030365 + -47241706458001320179 + -279877904 + -5388354862547 + -79448671068132936667 + -5922792943 + -520 + -76541665064745001 + -2351272 + -6196210158 + -6275513303165 + -837924124793825164 + -690310540885036294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-3, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -3919904635 + -63138705583563592416 + -2239064154322201183 + -2740958126 + -12325167233030365 + -47241706458001320179 + -279877904 + -5388354862547 + -79448671068132936667 + -5922792943 + -520 + -76541665064745001 + -2351272 + -6196210158 + -6275513303165 + -837924124793825164 + -690310540885036294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -666903104720 + -91333164979777636 + -680984871081119 + -2816351293 + -989406101315802866 + -48393 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -666903104720 + -91333164979777636 + -680984871081119 + -2816351293 + -989406101315802866 + -48393 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -666903104720 + -91333164979777636 + -680984871081119 + -2816351293 + -989406101315802866 + -48393 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -666903104720 + -91333164979777636 + -680984871081119 + -2816351293 + -989406101315802866 + -48393 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-4, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -666903104720 + -91333164979777636 + -680984871081119 + -2816351293 + -989406101315802866 + -48393 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -9 + -1215763170636 + -3284827848674 + -6 + -700241688755073 + -5288661633721621 + -6753987 + -60825327 + -567697003 + -3 + -2795686764503435561 + -8 + -3603466518400907370 + -739089849 + -428011918584325 + -2047 + -39586028 + -4956279211326016 + -105 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -9 + -1215763170636 + -3284827848674 + -6 + -700241688755073 + -5288661633721621 + -6753987 + -60825327 + -567697003 + -3 + -2795686764503435561 + -8 + -3603466518400907370 + -739089849 + -428011918584325 + -2047 + -39586028 + -4956279211326016 + -105 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -9 + -1215763170636 + -3284827848674 + -6 + -700241688755073 + -5288661633721621 + -6753987 + -60825327 + -567697003 + -3 + -2795686764503435561 + -8 + -3603466518400907370 + -739089849 + -428011918584325 + -2047 + -39586028 + -4956279211326016 + -105 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -9 + -1215763170636 + -3284827848674 + -6 + -700241688755073 + -5288661633721621 + -6753987 + -60825327 + -567697003 + -3 + -2795686764503435561 + -8 + -3603466518400907370 + -739089849 + -428011918584325 + -2047 + -39586028 + -4956279211326016 + -105 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-enumeration-5, + which is derived by restriction of built-in type nonPositiveInteger + by facet enumeration with values of: + -9 + -1215763170636 + -3284827848674 + -6 + -700241688755073 + -5288661633721621 + -6753987 + -60825327 + -567697003 + -3 + -2795686764503435561 + -8 + -3603466518400907370 + -739089849 + -428011918584325 + -2047 + -39586028 + -4956279211326016 + -105 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-whiteSpace-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-whiteSpace-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-whiteSpace-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-whiteSpace-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-nonPositiveInteger-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-nonPositiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-nonPositiveInteger-whiteSpace-1, + which is derived by restriction of built-in type nonPositiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-nonPositiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-nonPositiveInteger-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-1, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-2, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 548 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-2, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 548 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-2, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 548 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-2, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 548 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-2, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 548 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-3, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 319 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-3, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 319 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-3, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 319 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-3, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 319 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-3, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 319 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-4, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 630 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-4, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 630 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-4, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 630 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-4, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 630 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-4, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 630 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-5, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-5, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-5, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-5, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-normalizedString-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-maxLength-5, + which is derived by restriction of built-in type normalizedString + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-1, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-1-2" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-1, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-1-3" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-1, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-1-4" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-1, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-1-5" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-1, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-2, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-2, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-2, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-2, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-2, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 995 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-3-1" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-3, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-3-2" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-3, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-3-3" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-3, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-3-4" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-3, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-3-5" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-3, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 636 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-4-1" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-4, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 350 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-4-2" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-4, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 350 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-4-3" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-4, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 350 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-4-4" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-4, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 350 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-4-5" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-4, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 350 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-5-1" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-5, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-5-2" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-5, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-5-3" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-5, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-5-4" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-5, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-minLength-5-5" origin="NIST"><description> + File: NISTSchema-normalizedString-minLength-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-minLength-5, + which is derived by restriction of built-in type normalizedString + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-length-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-1, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-length-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-2, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-length-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-2, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-length-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-2, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-length-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-2, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-length-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-2, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-3-1" origin="NIST"><description> + File: NISTSchema-normalizedString-length-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-3, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-3-2" origin="NIST"><description> + File: NISTSchema-normalizedString-length-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-3, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-3-3" origin="NIST"><description> + File: NISTSchema-normalizedString-length-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-3, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-3-4" origin="NIST"><description> + File: NISTSchema-normalizedString-length-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-3, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-3-5" origin="NIST"><description> + File: NISTSchema-normalizedString-length-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-3, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-4-1" origin="NIST"><description> + File: NISTSchema-normalizedString-length-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-4, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-4-2" origin="NIST"><description> + File: NISTSchema-normalizedString-length-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-4, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-4-3" origin="NIST"><description> + File: NISTSchema-normalizedString-length-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-4, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-4-4" origin="NIST"><description> + File: NISTSchema-normalizedString-length-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-4, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-4-5" origin="NIST"><description> + File: NISTSchema-normalizedString-length-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-4, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-5-1" origin="NIST"><description> + File: NISTSchema-normalizedString-length-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-5, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-5-2" origin="NIST"><description> + File: NISTSchema-normalizedString-length-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-5, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-5-3" origin="NIST"><description> + File: NISTSchema-normalizedString-length-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-5, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-5-4" origin="NIST"><description> + File: NISTSchema-normalizedString-length-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-5, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-length-5-5" origin="NIST"><description> + File: NISTSchema-normalizedString-length-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-length-5, + which is derived by restriction of built-in type normalizedString + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-1, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s15604-1536 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-1-2" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-1, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s15604-1536 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-1-3" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-1, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s15604-1536 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-1-4" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-1, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s15604-1536 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-1-5" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-1, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s15604-1536 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-2, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s12297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-2, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s12297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-2, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s12297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-2, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s12297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-2, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s12297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-3-1" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-3, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s16749-1552 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-3-2" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-3, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s16749-1552 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-3-3" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-3, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s16749-1552 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-3-4" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-3, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s16749-1552 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-3-5" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-3, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s16749-1552 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-4-1" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-4, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s10977-1526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-4-2" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-4, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s10977-1526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-4-3" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-4, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s10977-1526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-4-4" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-4, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s10977-1526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-4-5" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-4, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s10977-1526 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-5-1" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-5, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s16318 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-5-2" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-5, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s16318 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-5-3" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-5, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s16318 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-5-4" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-5, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s16318 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-pattern-5-5" origin="NIST"><description> + File: NISTSchema-normalizedString-pattern-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-pattern-5, + which is derived by restriction of built-in type normalizedString + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s16318 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-1, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + and + more + can + technologies + for + sensors + aspects + languages + Working + the + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-1, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + and + more + can + technologies + for + sensors + aspects + languages + Working + the + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-1, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + and + more + can + technologies + for + sensors + aspects + languages + Working + the + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-1, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + and + more + can + technologies + for + sensors + aspects + languages + Working + the + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-1, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + and + more + can + technologies + for + sensors + aspects + languages + Working + the + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-2, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + the + emerging + and + computing + versions + creation + associated + disseminate + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-2, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + the + emerging + and + computing + versions + creation + associated + disseminate + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-2, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + the + emerging + and + computing + versions + creation + associated + disseminate + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-2, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + the + emerging + and + computing + versions + creation + associated + disseminate + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-2, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + the + emerging + and + computing + versions + creation + associated + disseminate + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-3, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + organizations + use + electronic + and + that + popular + The + as + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-3, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + organizations + use + electronic + and + that + popular + The + as + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-3, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + organizations + use + electronic + and + that + popular + The + as + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-3, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + organizations + use + electronic + and + that + popular + The + as + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-3, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + organizations + use + electronic + and + that + popular + The + as + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-4, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + library + Community + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-4, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + library + Community + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-4, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + library + Community + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-4, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + library + Community + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-4, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + library + Community + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-5, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + Partner + used + industry + its + to + nature + base + fed + Language + key + annual + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-5, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + Partner + used + industry + its + to + nature + base + fed + Language + key + annual + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-5, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + Partner + used + industry + its + to + nature + base + fed + Language + key + annual + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-5, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + Partner + used + industry + its + to + nature + base + fed + Language + key + annual + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-normalizedString-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-normalizedString-enumeration-5, + which is derived by restriction of built-in type normalizedString + by facet enumeration with values of: + Partner + used + industry + its + to + nature + base + fed + Language + key + annual + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-1, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-1, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-1, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-1, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-1, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-2-1" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-2, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-2-2" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-2, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-2-3" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-2, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-2-4" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-2, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-normalizedString-whiteSpace-2-5" origin="NIST"><description> + File: NISTSchema-normalizedString-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-normalizedString-whiteSpace-2, + which is derived by restriction of built-in type normalizedString + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-normalizedString-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-normalizedString-whiteSpace-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 98982922299280950982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 98982922299280950982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 98982922299280950982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 98982922299280950982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 98982922299280950982 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 30357994594089288131 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 30357994594089288131 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 30357994594089288131 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 30357994594089288131 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 30357994594089288131 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 62580895148002368965 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 62580895148002368965 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 62580895148002368965 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 62580895148002368965 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 62580895148002368965 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet minExclusive with a value of: 99999999999999999998 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 83506608920277514140 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 83506608920277514140 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 83506608920277514140 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 83506608920277514140 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 83506608920277514140 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 2757049649593878993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 2757049649593878993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 2757049649593878993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 2757049649593878993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 2757049649593878993 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 35874103269231083502 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 35874103269231083502 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 35874103269231083502 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 35874103269231083502 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 35874103269231083502 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-minInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet minInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 36233085655750330023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 36233085655750330023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 36233085655750330023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 36233085655750330023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 36233085655750330023 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 75754388579641751544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 75754388579641751544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 75754388579641751544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 75754388579641751544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 75754388579641751544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 47304829668459869030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 47304829668459869030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 47304829668459869030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 47304829668459869030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 47304829668459869030 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxExclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxExclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-1, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 49997522270383398801 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 49997522270383398801 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 49997522270383398801 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 49997522270383398801 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-2, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 49997522270383398801 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 67879797121649088076 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 67879797121649088076 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 67879797121649088076 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 67879797121649088076 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-3, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 67879797121649088076 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 22088302140907045690 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 22088302140907045690 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 22088302140907045690 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 22088302140907045690 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-4, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 22088302140907045690 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-maxInclusive-5, + which is derived by restriction of built-in type positiveInteger + by facet maxInclusive with a value of: 99999999999999999999 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-fractionDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-fractionDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-fractionDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-fractionDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-fractionDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-1, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-2, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-2, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-2, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-2, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-2, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-3, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-3, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-3, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-3, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-3, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-4, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-4, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-4, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-4, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-4, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-5, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-5, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-5, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-5, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-totalDigits-5, + which is derived by restriction of built-in type positiveInteger + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-1, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-1, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-1, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-1, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-1, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-2, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-2, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-2, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-2, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-2, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-3, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-3, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-3, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-3, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-3, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-4, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-4, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-4, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-4, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-4, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-5, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-5-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-5, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-5-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-5, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-5-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-5, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-pattern-5-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-pattern-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-pattern-5, + which is derived by restriction of built-in type positiveInteger + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-1, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 550215893734272 + 846254534438580785 + 43876110718277 + 7792480394466 + 9936 + 5547 + 4305434507488021 + 652408347111 + 68527470033184856301 + 421066425355950 + 6991035 + 9793440067111577 + 865014204294391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-1, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 550215893734272 + 846254534438580785 + 43876110718277 + 7792480394466 + 9936 + 5547 + 4305434507488021 + 652408347111 + 68527470033184856301 + 421066425355950 + 6991035 + 9793440067111577 + 865014204294391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-1, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 550215893734272 + 846254534438580785 + 43876110718277 + 7792480394466 + 9936 + 5547 + 4305434507488021 + 652408347111 + 68527470033184856301 + 421066425355950 + 6991035 + 9793440067111577 + 865014204294391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-1, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 550215893734272 + 846254534438580785 + 43876110718277 + 7792480394466 + 9936 + 5547 + 4305434507488021 + 652408347111 + 68527470033184856301 + 421066425355950 + 6991035 + 9793440067111577 + 865014204294391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-1, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 550215893734272 + 846254534438580785 + 43876110718277 + 7792480394466 + 9936 + 5547 + 4305434507488021 + 652408347111 + 68527470033184856301 + 421066425355950 + 6991035 + 9793440067111577 + 865014204294391 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-2, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 4319776478305440425 + 168992089292572589 + 17 + 73 + 9018128006869 + 35008621271819 + 5329577103 + 3268924300688627049 + 24560412427 + 243 + 112713568266571 + 987665007443 + 4277904121971298 + 99 + 89971416582 + 83009035 + 48731683 + 958164959 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-2, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 4319776478305440425 + 168992089292572589 + 17 + 73 + 9018128006869 + 35008621271819 + 5329577103 + 3268924300688627049 + 24560412427 + 243 + 112713568266571 + 987665007443 + 4277904121971298 + 99 + 89971416582 + 83009035 + 48731683 + 958164959 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-2, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 4319776478305440425 + 168992089292572589 + 17 + 73 + 9018128006869 + 35008621271819 + 5329577103 + 3268924300688627049 + 24560412427 + 243 + 112713568266571 + 987665007443 + 4277904121971298 + 99 + 89971416582 + 83009035 + 48731683 + 958164959 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-2, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 4319776478305440425 + 168992089292572589 + 17 + 73 + 9018128006869 + 35008621271819 + 5329577103 + 3268924300688627049 + 24560412427 + 243 + 112713568266571 + 987665007443 + 4277904121971298 + 99 + 89971416582 + 83009035 + 48731683 + 958164959 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-2, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 4319776478305440425 + 168992089292572589 + 17 + 73 + 9018128006869 + 35008621271819 + 5329577103 + 3268924300688627049 + 24560412427 + 243 + 112713568266571 + 987665007443 + 4277904121971298 + 99 + 89971416582 + 83009035 + 48731683 + 958164959 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-3, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 417348339 + 607206259964600869 + 2758503784426 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-3, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 417348339 + 607206259964600869 + 2758503784426 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-3, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 417348339 + 607206259964600869 + 2758503784426 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-3, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 417348339 + 607206259964600869 + 2758503784426 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-3, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 417348339 + 607206259964600869 + 2758503784426 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-4, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 43567 + 63 + 968144326202 + 4851754 + 656130644411529129 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-4, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 43567 + 63 + 968144326202 + 4851754 + 656130644411529129 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-4, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 43567 + 63 + 968144326202 + 4851754 + 656130644411529129 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-4, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 43567 + 63 + 968144326202 + 4851754 + 656130644411529129 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-4, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 43567 + 63 + 968144326202 + 4851754 + 656130644411529129 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-5, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 10179937916181291956 + 6 + 6878594880325160 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-5, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 10179937916181291956 + 6 + 6878594880325160 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-5, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 10179937916181291956 + 6 + 6878594880325160 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-5, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 10179937916181291956 + 6 + 6878594880325160 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-enumeration-5, + which is derived by restriction of built-in type positiveInteger + by facet enumeration with values of: + 10179937916181291956 + 6 + 6878594880325160 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-positiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-whiteSpace-1, + which is derived by restriction of built-in type positiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-positiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-whiteSpace-1, + which is derived by restriction of built-in type positiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-positiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-whiteSpace-1, + which is derived by restriction of built-in type positiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-positiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-whiteSpace-1, + which is derived by restriction of built-in type positiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-positiveInteger-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-positiveInteger-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-positiveInteger-whiteSpace-1, + which is derived by restriction of built-in type positiveInteger + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-positiveInteger-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-positiveInteger-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-QName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-1, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-1-2" origin="NIST"><description> + File: NISTSchema-QName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-1, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-1-3" origin="NIST"><description> + File: NISTSchema-QName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-1, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-1-4" origin="NIST"><description> + File: NISTSchema-QName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-1, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-1-5" origin="NIST"><description> + File: NISTSchema-QName-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-1, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-QName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-2, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-QName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-2, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-QName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-2, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-QName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-2, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-QName-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-2, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-QName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-3, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-QName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-3, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-QName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-3, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-QName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-3, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-QName-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-3, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-QName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-4, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-QName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-4, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-QName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-4, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-QName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-4, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-QName-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-4, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-QName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-5, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-QName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-5, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-QName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-5, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-QName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-5, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-QName-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-maxLength-5, + which is derived by restriction of built-in type QName + by facet maxLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-1-1" origin="NIST"><description> + File: NISTSchema-QName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-1, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-1-2" origin="NIST"><description> + File: NISTSchema-QName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-1, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-1-3" origin="NIST"><description> + File: NISTSchema-QName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-1, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-1-4" origin="NIST"><description> + File: NISTSchema-QName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-1, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-1-5" origin="NIST"><description> + File: NISTSchema-QName-minLength-1.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-1, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-2-1" origin="NIST"><description> + File: NISTSchema-QName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-2, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-2-2" origin="NIST"><description> + File: NISTSchema-QName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-2, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-2-3" origin="NIST"><description> + File: NISTSchema-QName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-2, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-2-4" origin="NIST"><description> + File: NISTSchema-QName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-2, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-2-5" origin="NIST"><description> + File: NISTSchema-QName-minLength-2.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-2, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 47 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-3-1" origin="NIST"><description> + File: NISTSchema-QName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-3, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-3-2" origin="NIST"><description> + File: NISTSchema-QName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-3, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-3-3" origin="NIST"><description> + File: NISTSchema-QName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-3, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-3-4" origin="NIST"><description> + File: NISTSchema-QName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-3, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-3-5" origin="NIST"><description> + File: NISTSchema-QName-minLength-3.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-3, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 21 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-4-1" origin="NIST"><description> + File: NISTSchema-QName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-4, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-4-2" origin="NIST"><description> + File: NISTSchema-QName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-4, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-4-3" origin="NIST"><description> + File: NISTSchema-QName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-4, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-4-4" origin="NIST"><description> + File: NISTSchema-QName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-4, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-4-5" origin="NIST"><description> + File: NISTSchema-QName-minLength-4.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-4, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-5-1" origin="NIST"><description> + File: NISTSchema-QName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-5, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-5-2" origin="NIST"><description> + File: NISTSchema-QName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-5, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-5-3" origin="NIST"><description> + File: NISTSchema-QName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-5, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-5-4" origin="NIST"><description> + File: NISTSchema-QName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-5, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-minLength-5-5" origin="NIST"><description> + File: NISTSchema-QName-minLength-5.xsd + This schema specifies a datatype, NISTSchema-QName-minLength-5, + which is derived by restriction of built-in type QName + by facet minLength with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-1-1" origin="NIST"><description> + File: NISTSchema-QName-length-1.xsd + This schema specifies a datatype, NISTSchema-QName-length-1, + which is derived by restriction of built-in type QName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-1-2" origin="NIST"><description> + File: NISTSchema-QName-length-1.xsd + This schema specifies a datatype, NISTSchema-QName-length-1, + which is derived by restriction of built-in type QName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-1-3" origin="NIST"><description> + File: NISTSchema-QName-length-1.xsd + This schema specifies a datatype, NISTSchema-QName-length-1, + which is derived by restriction of built-in type QName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-1-4" origin="NIST"><description> + File: NISTSchema-QName-length-1.xsd + This schema specifies a datatype, NISTSchema-QName-length-1, + which is derived by restriction of built-in type QName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-1-5" origin="NIST"><description> + File: NISTSchema-QName-length-1.xsd + This schema specifies a datatype, NISTSchema-QName-length-1, + which is derived by restriction of built-in type QName + by facet length with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-2-1" origin="NIST"><description> + File: NISTSchema-QName-length-2.xsd + This schema specifies a datatype, NISTSchema-QName-length-2, + which is derived by restriction of built-in type QName + by facet length with a value of: 22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-2-2" origin="NIST"><description> + File: NISTSchema-QName-length-2.xsd + This schema specifies a datatype, NISTSchema-QName-length-2, + which is derived by restriction of built-in type QName + by facet length with a value of: 22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-2-3" origin="NIST"><description> + File: NISTSchema-QName-length-2.xsd + This schema specifies a datatype, NISTSchema-QName-length-2, + which is derived by restriction of built-in type QName + by facet length with a value of: 22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-2-4" origin="NIST"><description> + File: NISTSchema-QName-length-2.xsd + This schema specifies a datatype, NISTSchema-QName-length-2, + which is derived by restriction of built-in type QName + by facet length with a value of: 22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-2-5" origin="NIST"><description> + File: NISTSchema-QName-length-2.xsd + This schema specifies a datatype, NISTSchema-QName-length-2, + which is derived by restriction of built-in type QName + by facet length with a value of: 22 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-3-1" origin="NIST"><description> + File: NISTSchema-QName-length-3.xsd + This schema specifies a datatype, NISTSchema-QName-length-3, + which is derived by restriction of built-in type QName + by facet length with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-3-2" origin="NIST"><description> + File: NISTSchema-QName-length-3.xsd + This schema specifies a datatype, NISTSchema-QName-length-3, + which is derived by restriction of built-in type QName + by facet length with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-3-3" origin="NIST"><description> + File: NISTSchema-QName-length-3.xsd + This schema specifies a datatype, NISTSchema-QName-length-3, + which is derived by restriction of built-in type QName + by facet length with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-3-4" origin="NIST"><description> + File: NISTSchema-QName-length-3.xsd + This schema specifies a datatype, NISTSchema-QName-length-3, + which is derived by restriction of built-in type QName + by facet length with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-3-5" origin="NIST"><description> + File: NISTSchema-QName-length-3.xsd + This schema specifies a datatype, NISTSchema-QName-length-3, + which is derived by restriction of built-in type QName + by facet length with a value of: 52 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-4-1" origin="NIST"><description> + File: NISTSchema-QName-length-4.xsd + This schema specifies a datatype, NISTSchema-QName-length-4, + which is derived by restriction of built-in type QName + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-4-2" origin="NIST"><description> + File: NISTSchema-QName-length-4.xsd + This schema specifies a datatype, NISTSchema-QName-length-4, + which is derived by restriction of built-in type QName + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-4-3" origin="NIST"><description> + File: NISTSchema-QName-length-4.xsd + This schema specifies a datatype, NISTSchema-QName-length-4, + which is derived by restriction of built-in type QName + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-4-4" origin="NIST"><description> + File: NISTSchema-QName-length-4.xsd + This schema specifies a datatype, NISTSchema-QName-length-4, + which is derived by restriction of built-in type QName + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-4-5" origin="NIST"><description> + File: NISTSchema-QName-length-4.xsd + This schema specifies a datatype, NISTSchema-QName-length-4, + which is derived by restriction of built-in type QName + by facet length with a value of: 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-5-1" origin="NIST"><description> + File: NISTSchema-QName-length-5.xsd + This schema specifies a datatype, NISTSchema-QName-length-5, + which is derived by restriction of built-in type QName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-5-2" origin="NIST"><description> + File: NISTSchema-QName-length-5.xsd + This schema specifies a datatype, NISTSchema-QName-length-5, + which is derived by restriction of built-in type QName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-5-3" origin="NIST"><description> + File: NISTSchema-QName-length-5.xsd + This schema specifies a datatype, NISTSchema-QName-length-5, + which is derived by restriction of built-in type QName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-5-4" origin="NIST"><description> + File: NISTSchema-QName-length-5.xsd + This schema specifies a datatype, NISTSchema-QName-length-5, + which is derived by restriction of built-in type QName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-length-5-5" origin="NIST"><description> + File: NISTSchema-QName-length-5.xsd + This schema specifies a datatype, NISTSchema-QName-length-5, + which is derived by restriction of built-in type QName + by facet length with a value of: 64 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-1-1" origin="NIST"><description> + File: NISTSchema-QName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-1, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-1-2" origin="NIST"><description> + File: NISTSchema-QName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-1, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-1-3" origin="NIST"><description> + File: NISTSchema-QName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-1, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-1-4" origin="NIST"><description> + File: NISTSchema-QName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-1, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-1-5" origin="NIST"><description> + File: NISTSchema-QName-pattern-1.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-1, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{6} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-2-1" origin="NIST"><description> + File: NISTSchema-QName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-2, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{52} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-2-2" origin="NIST"><description> + File: NISTSchema-QName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-2, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{52} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-2-3" origin="NIST"><description> + File: NISTSchema-QName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-2, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{52} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-2-4" origin="NIST"><description> + File: NISTSchema-QName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-2, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{52} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-2-5" origin="NIST"><description> + File: NISTSchema-QName-pattern-2.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-2, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{52} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-3-1" origin="NIST"><description> + File: NISTSchema-QName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-3, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{59} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-3-2" origin="NIST"><description> + File: NISTSchema-QName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-3, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{59} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-3-3" origin="NIST"><description> + File: NISTSchema-QName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-3, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{59} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-3-4" origin="NIST"><description> + File: NISTSchema-QName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-3, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{59} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-3-5" origin="NIST"><description> + File: NISTSchema-QName-pattern-3.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-3, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{59} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-4-1" origin="NIST"><description> + File: NISTSchema-QName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-4, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-4-2" origin="NIST"><description> + File: NISTSchema-QName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-4, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-4-3" origin="NIST"><description> + File: NISTSchema-QName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-4, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-4-4" origin="NIST"><description> + File: NISTSchema-QName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-4, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-4-5" origin="NIST"><description> + File: NISTSchema-QName-pattern-4.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-4, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{40} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-5-1" origin="NIST"><description> + File: NISTSchema-QName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-5, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-5-2" origin="NIST"><description> + File: NISTSchema-QName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-5, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-5-3" origin="NIST"><description> + File: NISTSchema-QName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-5, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-5-4" origin="NIST"><description> + File: NISTSchema-QName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-5, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-pattern-5-5" origin="NIST"><description> + File: NISTSchema-QName-pattern-5.xsd + This schema specifies a datatype, NISTSchema-QName-pattern-5, + which is derived by restriction of built-in type QName + by facet pattern with a value of: (\i\c*:)?\i\c{57} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-QName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-1, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _system_and_standard-busi + tof. + _chain-on-by_specifications.and.that_do- + kthese-suites_providing-body.working.exchange.networks.simu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-QName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-1, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _system_and_standard-busi + tof. + _chain-on-by_specifications.and.that_do- + kthese-suites_providing-body.working.exchange.networks.simu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-QName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-1, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _system_and_standard-busi + tof. + _chain-on-by_specifications.and.that_do- + kthese-suites_providing-body.working.exchange.networks.simu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-QName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-1, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _system_and_standard-busi + tof. + _chain-on-by_specifications.and.that_do- + kthese-suites_providing-body.working.exchange.networks.simu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-QName-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-1, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _system_and_standard-busi + tof. + _chain-on-by_specifications.and.that_do- + kthese-suites_providing-body.working.exchange.networks.simu + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-QName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-2, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + othe.the_co:rbe.the_business_util + _ + _commerce-lack_s-and-g_impact_offer_us + _open.conferences_development-to-a.and-the-to_that + tfor-si:qtests-the-both-profiles.permitting_profile + tand-a-with.of_displaying_and-into + ttools-emerging.v + u:isubject-challenges. + _ensure_pages.be. + _industry.improved-to_completion.about-reviewe + _chains-its.a.of_system.identify-this.files + ito_and.information-set-int + _w:_is-recent_advent_the-vocabularies-the-computing.software-co + _the.exc:uof.respect-accelerate_would- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-QName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-2, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + othe.the_co:rbe.the_business_util + _ + _commerce-lack_s-and-g_impact_offer_us + _open.conferences_development-to-a.and-the-to_that + tfor-si:qtests-the-both-profiles.permitting_profile + tand-a-with.of_displaying_and-into + ttools-emerging.v + u:isubject-challenges. + _ensure_pages.be. + _industry.improved-to_completion.about-reviewe + _chains-its.a.of_system.identify-this.files + ito_and.information-set-int + _w:_is-recent_advent_the-vocabularies-the-computing.software-co + _the.exc:uof.respect-accelerate_would- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-QName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-2, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + othe.the_co:rbe.the_business_util + _ + _commerce-lack_s-and-g_impact_offer_us + _open.conferences_development-to-a.and-the-to_that + tfor-si:qtests-the-both-profiles.permitting_profile + tand-a-with.of_displaying_and-into + ttools-emerging.v + u:isubject-challenges. + _ensure_pages.be. + _industry.improved-to_completion.about-reviewe + _chains-its.a.of_system.identify-this.files + ito_and.information-set-int + _w:_is-recent_advent_the-vocabularies-the-computing.software-co + _the.exc:uof.respect-accelerate_would- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-QName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-2, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + othe.the_co:rbe.the_business_util + _ + _commerce-lack_s-and-g_impact_offer_us + _open.conferences_development-to-a.and-the-to_that + tfor-si:qtests-the-both-profiles.permitting_profile + tand-a-with.of_displaying_and-into + ttools-emerging.v + u:isubject-challenges. + _ensure_pages.be. + _industry.improved-to_completion.about-reviewe + _chains-its.a.of_system.identify-this.files + ito_and.information-set-int + _w:_is-recent_advent_the-vocabularies-the-computing.software-co + _the.exc:uof.respect-accelerate_would- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-QName-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-2, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + othe.the_co:rbe.the_business_util + _ + _commerce-lack_s-and-g_impact_offer_us + _open.conferences_development-to-a.and-the-to_that + tfor-si:qtests-the-both-profiles.permitting_profile + tand-a-with.of_displaying_and-into + ttools-emerging.v + u:isubject-challenges. + _ensure_pages.be. + _industry.improved-to_completion.about-reviewe + _chains-its.a.of_system.identify-this.files + ito_and.information-set-int + _w:_is-recent_advent_the-vocabularies-the-computing.software-co + _the.exc:uof.respect-accelerate_would- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-QName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-3, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _as.information.:sg-by.that.on_efforts.voice-enabled + _the.to:nsystem-complex-effectively-those_can + wpico-cellular_that.cross-reference-networki + _as.succ + ldefine-allow.library_wir:rof_and_ultimate.allow_mem + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-QName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-3, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _as.information.:sg-by.that.on_efforts.voice-enabled + _the.to:nsystem-complex-effectively-those_can + wpico-cellular_that.cross-reference-networki + _as.succ + ldefine-allow.library_wir:rof_and_ultimate.allow_mem + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-QName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-3, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _as.information.:sg-by.that.on_efforts.voice-enabled + _the.to:nsystem-complex-effectively-those_can + wpico-cellular_that.cross-reference-networki + _as.succ + ldefine-allow.library_wir:rof_and_ultimate.allow_mem + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-QName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-3, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _as.information.:sg-by.that.on_efforts.voice-enabled + _the.to:nsystem-complex-effectively-those_can + wpico-cellular_that.cross-reference-networki + _as.succ + ldefine-allow.library_wir:rof_and_ultimate.allow_mem + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-QName-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-3, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _as.information.:sg-by.that.on_efforts.voice-enabled + _the.to:nsystem-complex-effectively-those_can + wpico-cellular_that.cross-reference-networki + _as.succ + ldefine-allow.library_wir:rof_and_ultimate.allow_mem + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-QName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-4, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + binto_portable_to.specifications_is.primary.interconn + _:iguidelines-0 + _made_its-electronic_use_the.both.a.chair-has.exchange + wand_specifications-creation_this.world.the + qres + _years.documents_for-secu + jand.as-a.is_pervasive:dthe-such.issues-base_ + rindustries-bu:_that-the_the_use.must.v + _impl:_documents-bo + vperva + _annual.industry_and_enable_documents-the_by-the.processes + _so:_be_the-must_of-particularly_a + _ + wbe-wide_well.f + _ref:_effor + lto.as-manipulate_commerce-wil + _versions-as:_to.of-a-of_and.5_ + _foster_developed-be-web-e_known- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-QName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-4, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + binto_portable_to.specifications_is.primary.interconn + _:iguidelines-0 + _made_its-electronic_use_the.both.a.chair-has.exchange + wand_specifications-creation_this.world.the + qres + _years.documents_for-secu + jand.as-a.is_pervasive:dthe-such.issues-base_ + rindustries-bu:_that-the_the_use.must.v + _impl:_documents-bo + vperva + _annual.industry_and_enable_documents-the_by-the.processes + _so:_be_the-must_of-particularly_a + _ + wbe-wide_well.f + _ref:_effor + lto.as-manipulate_commerce-wil + _versions-as:_to.of-a-of_and.5_ + _foster_developed-be-web-e_known- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-QName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-4, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + binto_portable_to.specifications_is.primary.interconn + _:iguidelines-0 + _made_its-electronic_use_the.both.a.chair-has.exchange + wand_specifications-creation_this.world.the + qres + _years.documents_for-secu + jand.as-a.is_pervasive:dthe-such.issues-base_ + rindustries-bu:_that-the_the_use.must.v + _impl:_documents-bo + vperva + _annual.industry_and_enable_documents-the_by-the.processes + _so:_be_the-must_of-particularly_a + _ + wbe-wide_well.f + _ref:_effor + lto.as-manipulate_commerce-wil + _versions-as:_to.of-a-of_and.5_ + _foster_developed-be-web-e_known- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-QName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-4, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + binto_portable_to.specifications_is.primary.interconn + _:iguidelines-0 + _made_its-electronic_use_the.both.a.chair-has.exchange + wand_specifications-creation_this.world.the + qres + _years.documents_for-secu + jand.as-a.is_pervasive:dthe-such.issues-base_ + rindustries-bu:_that-the_the_use.must.v + _impl:_documents-bo + vperva + _annual.industry_and_enable_documents-the_by-the.processes + _so:_be_the-must_of-particularly_a + _ + wbe-wide_well.f + _ref:_effor + lto.as-manipulate_commerce-wil + _versions-as:_to.of-a-of_and.5_ + _foster_developed-be-web-e_known- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-QName-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-4, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + binto_portable_to.specifications_is.primary.interconn + _:iguidelines-0 + _made_its-electronic_use_the.both.a.chair-has.exchange + wand_specifications-creation_this.world.the + qres + _years.documents_for-secu + jand.as-a.is_pervasive:dthe-such.issues-base_ + rindustries-bu:_that-the_the_use.must.v + _impl:_documents-bo + vperva + _annual.industry_and_enable_documents-the_by-the.processes + _so:_be_the-must_of-particularly_a + _ + wbe-wide_well.f + _ref:_effor + lto.as-manipulate_commerce-wil + _versions-as:_to.of-a-of_and.5_ + _foster_developed-be-web-e_known- + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-QName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-5, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _of.be_following-:fother-chair-the.specif + mproducts_manufacturers.and-as_computing_designed.do + nused-for.transmit_implementation.to-and + wthat_:ymediums.discovery.been-tools.industr + _international.deployed_must.performance_to-discov + kof.portab:_defines-disseminat + uunambiguous-other_is-will-execution-issues-and_ + _large_r + falso.the.heteroge:fdebug_can-data.of_and_divisions-a + _creation_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-QName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-5, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _of.be_following-:fother-chair-the.specif + mproducts_manufacturers.and-as_computing_designed.do + nused-for.transmit_implementation.to-and + wthat_:ymediums.discovery.been-tools.industr + _international.deployed_must.performance_to-discov + kof.portab:_defines-disseminat + uunambiguous-other_is-will-execution-issues-and_ + _large_r + falso.the.heteroge:fdebug_can-data.of_and_divisions-a + _creation_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-QName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-5, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _of.be_following-:fother-chair-the.specif + mproducts_manufacturers.and-as_computing_designed.do + nused-for.transmit_implementation.to-and + wthat_:ymediums.discovery.been-tools.industr + _international.deployed_must.performance_to-discov + kof.portab:_defines-disseminat + uunambiguous-other_is-will-execution-issues-and_ + _large_r + falso.the.heteroge:fdebug_can-data.of_and_divisions-a + _creation_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-QName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-5, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _of.be_following-:fother-chair-the.specif + mproducts_manufacturers.and-as_computing_designed.do + nused-for.transmit_implementation.to-and + wthat_:ymediums.discovery.been-tools.industr + _international.deployed_must.performance_to-discov + kof.portab:_defines-disseminat + uunambiguous-other_is-will-execution-issues-and_ + _large_r + falso.the.heteroge:fdebug_can-data.of_and_divisions-a + _creation_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-QName-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-QName-enumeration-5, + which is derived by restriction of built-in type QName + by facet enumeration with values of: + _of.be_following-:fother-chair-the.specif + mproducts_manufacturers.and-as_computing_designed.do + nused-for.transmit_implementation.to-and + wthat_:ymediums.discovery.been-tools.industr + _international.deployed_must.performance_to-discov + kof.portab:_defines-disseminat + uunambiguous-other_is-will-execution-issues-and_ + _large_r + falso.the.heteroge:fdebug_can-data.of_and_divisions-a + _creation_ + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-QName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-QName-whiteSpace-1, + which is derived by restriction of built-in type QName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-QName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-QName-whiteSpace-1, + which is derived by restriction of built-in type QName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-QName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-QName-whiteSpace-1, + which is derived by restriction of built-in type QName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-QName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-QName-whiteSpace-1, + which is derived by restriction of built-in type QName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-QName-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-QName-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-QName-whiteSpace-1, + which is derived by restriction of built-in type QName + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-QName-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-QName-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-short-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-1, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-short-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-1, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-short-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-1, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-short-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-1, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-short-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-1, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-short-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-2, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 18601 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-short-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-2, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 18601 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-short-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-2, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 18601 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-short-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-2, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 18601 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-short-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-2, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 18601 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-short-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-3, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -2432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-short-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-3, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -2432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-short-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-3, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -2432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-short-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-3, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -2432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-short-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-3, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -2432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-short-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-4, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -29760 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-short-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-4, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -29760 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-short-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-4, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -29760 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-short-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-4, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -29760 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-short-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-4, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: -29760 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-short-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-minExclusive-5, + which is derived by restriction of built-in type short + by facet minExclusive with a value of: 32766 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-short-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-1, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-short-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-1, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-short-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-1, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-short-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-1, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-short-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-1, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-short-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-2, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 17388 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-short-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-2, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 17388 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-short-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-2, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 17388 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-short-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-2, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 17388 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-short-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-2, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 17388 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-short-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-3, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30223 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-short-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-3, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30223 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-short-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-3, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30223 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-short-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-3, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30223 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-short-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-3, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30223 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-short-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-4, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-short-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-4, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-short-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-4, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-short-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-4, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-short-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-4, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 30224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-short-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-minInclusive-5, + which is derived by restriction of built-in type short + by facet minInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-1, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-2, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -24968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-2, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -24968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-2, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -24968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-2, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -24968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-2, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -24968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-3, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 23450 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-3, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 23450 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-3, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 23450 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-3, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 23450 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-3, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 23450 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-4, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -23419 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-4, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -23419 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-4, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -23419 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-4, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -23419 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-4, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: -23419 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-5, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-5, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-5, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-5, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-short-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxExclusive-5, + which is derived by restriction of built-in type short + by facet maxExclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-1, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -32768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-2, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 17144 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-2, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 17144 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-2, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 17144 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-2, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 17144 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-2, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 17144 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-3, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 10770 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-3, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 10770 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-3, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 10770 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-3, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 10770 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-3, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 10770 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-4, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -20692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-4, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -20692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-4, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -20692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-4, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -20692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-4, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: -20692 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-5, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-5, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-5, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-5, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-short-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-short-maxInclusive-5, + which is derived by restriction of built-in type short + by facet maxInclusive with a value of: 32767 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-short-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-fractionDigits-1, + which is derived by restriction of built-in type short + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-short-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-fractionDigits-1, + which is derived by restriction of built-in type short + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-short-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-fractionDigits-1, + which is derived by restriction of built-in type short + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-short-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-fractionDigits-1, + which is derived by restriction of built-in type short + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-short-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-fractionDigits-1, + which is derived by restriction of built-in type short + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-short-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-1, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-short-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-1, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-short-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-1, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-short-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-1, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-short-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-1, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-short-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-2, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-short-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-2, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-short-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-2, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-short-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-2, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-short-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-2, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-short-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-3, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-short-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-3, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-short-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-3, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-short-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-3, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-short-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-3, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-short-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-4, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-short-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-4, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-short-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-4, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-short-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-4, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-short-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-4, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-short-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-5, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-short-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-5, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-short-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-5, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-short-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-5, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-short-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-short-totalDigits-5, + which is derived by restriction of built-in type short + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-1-1" origin="NIST"><description> + File: NISTSchema-short-pattern-1.xsd + This schema specifies a datatype, NISTSchema-short-pattern-1, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-1-2" origin="NIST"><description> + File: NISTSchema-short-pattern-1.xsd + This schema specifies a datatype, NISTSchema-short-pattern-1, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-1-3" origin="NIST"><description> + File: NISTSchema-short-pattern-1.xsd + This schema specifies a datatype, NISTSchema-short-pattern-1, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-1-4" origin="NIST"><description> + File: NISTSchema-short-pattern-1.xsd + This schema specifies a datatype, NISTSchema-short-pattern-1, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-1-5" origin="NIST"><description> + File: NISTSchema-short-pattern-1.xsd + This schema specifies a datatype, NISTSchema-short-pattern-1, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-2-1" origin="NIST"><description> + File: NISTSchema-short-pattern-2.xsd + This schema specifies a datatype, NISTSchema-short-pattern-2, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-2-2" origin="NIST"><description> + File: NISTSchema-short-pattern-2.xsd + This schema specifies a datatype, NISTSchema-short-pattern-2, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-2-3" origin="NIST"><description> + File: NISTSchema-short-pattern-2.xsd + This schema specifies a datatype, NISTSchema-short-pattern-2, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-2-4" origin="NIST"><description> + File: NISTSchema-short-pattern-2.xsd + This schema specifies a datatype, NISTSchema-short-pattern-2, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-2-5" origin="NIST"><description> + File: NISTSchema-short-pattern-2.xsd + This schema specifies a datatype, NISTSchema-short-pattern-2, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-3-1" origin="NIST"><description> + File: NISTSchema-short-pattern-3.xsd + This schema specifies a datatype, NISTSchema-short-pattern-3, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-3-2" origin="NIST"><description> + File: NISTSchema-short-pattern-3.xsd + This schema specifies a datatype, NISTSchema-short-pattern-3, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-3-3" origin="NIST"><description> + File: NISTSchema-short-pattern-3.xsd + This schema specifies a datatype, NISTSchema-short-pattern-3, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-3-4" origin="NIST"><description> + File: NISTSchema-short-pattern-3.xsd + This schema specifies a datatype, NISTSchema-short-pattern-3, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-3-5" origin="NIST"><description> + File: NISTSchema-short-pattern-3.xsd + This schema specifies a datatype, NISTSchema-short-pattern-3, + which is derived by restriction of built-in type short + by facet pattern with a value of: \-\d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-4-1" origin="NIST"><description> + File: NISTSchema-short-pattern-4.xsd + This schema specifies a datatype, NISTSchema-short-pattern-4, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-4-2" origin="NIST"><description> + File: NISTSchema-short-pattern-4.xsd + This schema specifies a datatype, NISTSchema-short-pattern-4, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-4-3" origin="NIST"><description> + File: NISTSchema-short-pattern-4.xsd + This schema specifies a datatype, NISTSchema-short-pattern-4, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-4-4" origin="NIST"><description> + File: NISTSchema-short-pattern-4.xsd + This schema specifies a datatype, NISTSchema-short-pattern-4, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-4-5" origin="NIST"><description> + File: NISTSchema-short-pattern-4.xsd + This schema specifies a datatype, NISTSchema-short-pattern-4, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-5-1" origin="NIST"><description> + File: NISTSchema-short-pattern-5.xsd + This schema specifies a datatype, NISTSchema-short-pattern-5, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-5-2" origin="NIST"><description> + File: NISTSchema-short-pattern-5.xsd + This schema specifies a datatype, NISTSchema-short-pattern-5, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-5-3" origin="NIST"><description> + File: NISTSchema-short-pattern-5.xsd + This schema specifies a datatype, NISTSchema-short-pattern-5, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-5-4" origin="NIST"><description> + File: NISTSchema-short-pattern-5.xsd + This schema specifies a datatype, NISTSchema-short-pattern-5, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-pattern-5-5" origin="NIST"><description> + File: NISTSchema-short-pattern-5.xsd + This schema specifies a datatype, NISTSchema-short-pattern-5, + which is derived by restriction of built-in type short + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-short-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-1, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 6154 + -63 + -74 + 474 + 75 + -7 + -4 + 8 + 604 + 2 + -69 + 613 + -77 + 689 + -262 + 77 + -6262 + -54 + -4 + -37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-short-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-1, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 6154 + -63 + -74 + 474 + 75 + -7 + -4 + 8 + 604 + 2 + -69 + 613 + -77 + 689 + -262 + 77 + -6262 + -54 + -4 + -37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-short-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-1, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 6154 + -63 + -74 + 474 + 75 + -7 + -4 + 8 + 604 + 2 + -69 + 613 + -77 + 689 + -262 + 77 + -6262 + -54 + -4 + -37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-short-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-1, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 6154 + -63 + -74 + 474 + 75 + -7 + -4 + 8 + 604 + 2 + -69 + 613 + -77 + 689 + -262 + 77 + -6262 + -54 + -4 + -37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-short-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-1, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 6154 + -63 + -74 + 474 + 75 + -7 + -4 + 8 + 604 + 2 + -69 + 613 + -77 + 689 + -262 + 77 + -6262 + -54 + -4 + -37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-short-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-2, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4204 + 95 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-short-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-2, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4204 + 95 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-short-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-2, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4204 + 95 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-short-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-2, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4204 + 95 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-short-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-2, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4204 + 95 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-short-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-3, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 864 + -436 + -9766 + 3943 + -4570 + 4297 + 3287 + -19500 + 5530 + -14 + 7 + 8269 + 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-short-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-3, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 864 + -436 + -9766 + 3943 + -4570 + 4297 + 3287 + -19500 + 5530 + -14 + 7 + 8269 + 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-short-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-3, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 864 + -436 + -9766 + 3943 + -4570 + 4297 + 3287 + -19500 + 5530 + -14 + 7 + 8269 + 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-short-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-3, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 864 + -436 + -9766 + 3943 + -4570 + 4297 + 3287 + -19500 + 5530 + -14 + 7 + 8269 + 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-short-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-3, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 864 + -436 + -9766 + 3943 + -4570 + 4297 + 3287 + -19500 + 5530 + -14 + 7 + 8269 + 8 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-short-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-4, + which is derived by restriction of built-in type short + by facet enumeration with values of: + -766 + -5068 + 9 + 1091 + -77 + -119 + -3 + -8 + -81 + 155 + 804 + 46 + -1 + 538 + 5581 + 5 + -4 + -9829 + -6 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-short-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-4, + which is derived by restriction of built-in type short + by facet enumeration with values of: + -766 + -5068 + 9 + 1091 + -77 + -119 + -3 + -8 + -81 + 155 + 804 + 46 + -1 + 538 + 5581 + 5 + -4 + -9829 + -6 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-short-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-4, + which is derived by restriction of built-in type short + by facet enumeration with values of: + -766 + -5068 + 9 + 1091 + -77 + -119 + -3 + -8 + -81 + 155 + 804 + 46 + -1 + 538 + 5581 + 5 + -4 + -9829 + -6 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-short-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-4, + which is derived by restriction of built-in type short + by facet enumeration with values of: + -766 + -5068 + 9 + 1091 + -77 + -119 + -3 + -8 + -81 + 155 + 804 + 46 + -1 + 538 + 5581 + 5 + -4 + -9829 + -6 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-short-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-4, + which is derived by restriction of built-in type short + by facet enumeration with values of: + -766 + -5068 + 9 + 1091 + -77 + -119 + -3 + -8 + -81 + 155 + 804 + 46 + -1 + 538 + 5581 + 5 + -4 + -9829 + -6 + 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-short-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-5, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4 + 66 + -704 + 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-short-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-5, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4 + 66 + -704 + 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-short-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-5, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4 + 66 + -704 + 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-short-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-5, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4 + 66 + -704 + 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-short-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-short-enumeration-5, + which is derived by restriction of built-in type short + by facet enumeration with values of: + 4 + 66 + -704 + 35 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-short-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-short-whiteSpace-1, + which is derived by restriction of built-in type short + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-short-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-short-whiteSpace-1, + which is derived by restriction of built-in type short + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-short-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-short-whiteSpace-1, + which is derived by restriction of built-in type short + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-short-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-short-whiteSpace-1, + which is derived by restriction of built-in type short + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-short-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-short-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-short-whiteSpace-1, + which is derived by restriction of built-in type short + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-short-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-short-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-string-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-1, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-string-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-2, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 637 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-string-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-2, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 637 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-string-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-2, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 637 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-string-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-2, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 637 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-string-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-2, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 637 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-string-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-3, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 509 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-string-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-3, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 509 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-string-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-3, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 509 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-string-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-3, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 509 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-string-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-3, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 509 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-string-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-4, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-string-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-4, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-string-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-4, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-string-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-4, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-string-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-4, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 40 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-string-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-5, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-string-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-5, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-string-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-5, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-string-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-5, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-string-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-string-maxLength-5, + which is derived by restriction of built-in type string + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-1-1" origin="NIST"><description> + File: NISTSchema-string-minLength-1.xsd + This schema specifies a datatype, NISTSchema-string-minLength-1, + which is derived by restriction of built-in type string + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-1-2" origin="NIST"><description> + File: NISTSchema-string-minLength-1.xsd + This schema specifies a datatype, NISTSchema-string-minLength-1, + which is derived by restriction of built-in type string + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-1-3" origin="NIST"><description> + File: NISTSchema-string-minLength-1.xsd + This schema specifies a datatype, NISTSchema-string-minLength-1, + which is derived by restriction of built-in type string + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-1-4" origin="NIST"><description> + File: NISTSchema-string-minLength-1.xsd + This schema specifies a datatype, NISTSchema-string-minLength-1, + which is derived by restriction of built-in type string + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-1-5" origin="NIST"><description> + File: NISTSchema-string-minLength-1.xsd + This schema specifies a datatype, NISTSchema-string-minLength-1, + which is derived by restriction of built-in type string + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-2-1" origin="NIST"><description> + File: NISTSchema-string-minLength-2.xsd + This schema specifies a datatype, NISTSchema-string-minLength-2, + which is derived by restriction of built-in type string + by facet minLength with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-2-2" origin="NIST"><description> + File: NISTSchema-string-minLength-2.xsd + This schema specifies a datatype, NISTSchema-string-minLength-2, + which is derived by restriction of built-in type string + by facet minLength with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-2-3" origin="NIST"><description> + File: NISTSchema-string-minLength-2.xsd + This schema specifies a datatype, NISTSchema-string-minLength-2, + which is derived by restriction of built-in type string + by facet minLength with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-2-4" origin="NIST"><description> + File: NISTSchema-string-minLength-2.xsd + This schema specifies a datatype, NISTSchema-string-minLength-2, + which is derived by restriction of built-in type string + by facet minLength with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-2-5" origin="NIST"><description> + File: NISTSchema-string-minLength-2.xsd + This schema specifies a datatype, NISTSchema-string-minLength-2, + which is derived by restriction of built-in type string + by facet minLength with a value of: 737 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-3-1" origin="NIST"><description> + File: NISTSchema-string-minLength-3.xsd + This schema specifies a datatype, NISTSchema-string-minLength-3, + which is derived by restriction of built-in type string + by facet minLength with a value of: 440 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-3-2" origin="NIST"><description> + File: NISTSchema-string-minLength-3.xsd + This schema specifies a datatype, NISTSchema-string-minLength-3, + which is derived by restriction of built-in type string + by facet minLength with a value of: 440 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-3-3" origin="NIST"><description> + File: NISTSchema-string-minLength-3.xsd + This schema specifies a datatype, NISTSchema-string-minLength-3, + which is derived by restriction of built-in type string + by facet minLength with a value of: 440 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-3-4" origin="NIST"><description> + File: NISTSchema-string-minLength-3.xsd + This schema specifies a datatype, NISTSchema-string-minLength-3, + which is derived by restriction of built-in type string + by facet minLength with a value of: 440 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-3-5" origin="NIST"><description> + File: NISTSchema-string-minLength-3.xsd + This schema specifies a datatype, NISTSchema-string-minLength-3, + which is derived by restriction of built-in type string + by facet minLength with a value of: 440 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-4-1" origin="NIST"><description> + File: NISTSchema-string-minLength-4.xsd + This schema specifies a datatype, NISTSchema-string-minLength-4, + which is derived by restriction of built-in type string + by facet minLength with a value of: 622 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-4-2" origin="NIST"><description> + File: NISTSchema-string-minLength-4.xsd + This schema specifies a datatype, NISTSchema-string-minLength-4, + which is derived by restriction of built-in type string + by facet minLength with a value of: 622 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-4-3" origin="NIST"><description> + File: NISTSchema-string-minLength-4.xsd + This schema specifies a datatype, NISTSchema-string-minLength-4, + which is derived by restriction of built-in type string + by facet minLength with a value of: 622 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-4-4" origin="NIST"><description> + File: NISTSchema-string-minLength-4.xsd + This schema specifies a datatype, NISTSchema-string-minLength-4, + which is derived by restriction of built-in type string + by facet minLength with a value of: 622 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-4-5" origin="NIST"><description> + File: NISTSchema-string-minLength-4.xsd + This schema specifies a datatype, NISTSchema-string-minLength-4, + which is derived by restriction of built-in type string + by facet minLength with a value of: 622 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-5-1" origin="NIST"><description> + File: NISTSchema-string-minLength-5.xsd + This schema specifies a datatype, NISTSchema-string-minLength-5, + which is derived by restriction of built-in type string + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-5-2" origin="NIST"><description> + File: NISTSchema-string-minLength-5.xsd + This schema specifies a datatype, NISTSchema-string-minLength-5, + which is derived by restriction of built-in type string + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-5-3" origin="NIST"><description> + File: NISTSchema-string-minLength-5.xsd + This schema specifies a datatype, NISTSchema-string-minLength-5, + which is derived by restriction of built-in type string + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-5-4" origin="NIST"><description> + File: NISTSchema-string-minLength-5.xsd + This schema specifies a datatype, NISTSchema-string-minLength-5, + which is derived by restriction of built-in type string + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-minLength-5-5" origin="NIST"><description> + File: NISTSchema-string-minLength-5.xsd + This schema specifies a datatype, NISTSchema-string-minLength-5, + which is derived by restriction of built-in type string + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-1-1" origin="NIST"><description> + File: NISTSchema-string-length-1.xsd + This schema specifies a datatype, NISTSchema-string-length-1, + which is derived by restriction of built-in type string + by facet length with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-2-1" origin="NIST"><description> + File: NISTSchema-string-length-2.xsd + This schema specifies a datatype, NISTSchema-string-length-2, + which is derived by restriction of built-in type string + by facet length with a value of: 789 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-2-2" origin="NIST"><description> + File: NISTSchema-string-length-2.xsd + This schema specifies a datatype, NISTSchema-string-length-2, + which is derived by restriction of built-in type string + by facet length with a value of: 789 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-2-3" origin="NIST"><description> + File: NISTSchema-string-length-2.xsd + This schema specifies a datatype, NISTSchema-string-length-2, + which is derived by restriction of built-in type string + by facet length with a value of: 789 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-2-4" origin="NIST"><description> + File: NISTSchema-string-length-2.xsd + This schema specifies a datatype, NISTSchema-string-length-2, + which is derived by restriction of built-in type string + by facet length with a value of: 789 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-2-5" origin="NIST"><description> + File: NISTSchema-string-length-2.xsd + This schema specifies a datatype, NISTSchema-string-length-2, + which is derived by restriction of built-in type string + by facet length with a value of: 789 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-3-1" origin="NIST"><description> + File: NISTSchema-string-length-3.xsd + This schema specifies a datatype, NISTSchema-string-length-3, + which is derived by restriction of built-in type string + by facet length with a value of: 882 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-3-2" origin="NIST"><description> + File: NISTSchema-string-length-3.xsd + This schema specifies a datatype, NISTSchema-string-length-3, + which is derived by restriction of built-in type string + by facet length with a value of: 882 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-3-3" origin="NIST"><description> + File: NISTSchema-string-length-3.xsd + This schema specifies a datatype, NISTSchema-string-length-3, + which is derived by restriction of built-in type string + by facet length with a value of: 882 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-3-4" origin="NIST"><description> + File: NISTSchema-string-length-3.xsd + This schema specifies a datatype, NISTSchema-string-length-3, + which is derived by restriction of built-in type string + by facet length with a value of: 882 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-3-5" origin="NIST"><description> + File: NISTSchema-string-length-3.xsd + This schema specifies a datatype, NISTSchema-string-length-3, + which is derived by restriction of built-in type string + by facet length with a value of: 882 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-4-1" origin="NIST"><description> + File: NISTSchema-string-length-4.xsd + This schema specifies a datatype, NISTSchema-string-length-4, + which is derived by restriction of built-in type string + by facet length with a value of: 363 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-4-2" origin="NIST"><description> + File: NISTSchema-string-length-4.xsd + This schema specifies a datatype, NISTSchema-string-length-4, + which is derived by restriction of built-in type string + by facet length with a value of: 363 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-4-3" origin="NIST"><description> + File: NISTSchema-string-length-4.xsd + This schema specifies a datatype, NISTSchema-string-length-4, + which is derived by restriction of built-in type string + by facet length with a value of: 363 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-4-4" origin="NIST"><description> + File: NISTSchema-string-length-4.xsd + This schema specifies a datatype, NISTSchema-string-length-4, + which is derived by restriction of built-in type string + by facet length with a value of: 363 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-4-5" origin="NIST"><description> + File: NISTSchema-string-length-4.xsd + This schema specifies a datatype, NISTSchema-string-length-4, + which is derived by restriction of built-in type string + by facet length with a value of: 363 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-5-1" origin="NIST"><description> + File: NISTSchema-string-length-5.xsd + This schema specifies a datatype, NISTSchema-string-length-5, + which is derived by restriction of built-in type string + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-5-2" origin="NIST"><description> + File: NISTSchema-string-length-5.xsd + This schema specifies a datatype, NISTSchema-string-length-5, + which is derived by restriction of built-in type string + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-5-3" origin="NIST"><description> + File: NISTSchema-string-length-5.xsd + This schema specifies a datatype, NISTSchema-string-length-5, + which is derived by restriction of built-in type string + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-5-4" origin="NIST"><description> + File: NISTSchema-string-length-5.xsd + This schema specifies a datatype, NISTSchema-string-length-5, + which is derived by restriction of built-in type string + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-length-5-5" origin="NIST"><description> + File: NISTSchema-string-length-5.xsd + This schema specifies a datatype, NISTSchema-string-length-5, + which is derived by restriction of built-in type string + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-1-1" origin="NIST"><description> + File: NISTSchema-string-pattern-1.xsd + This schema specifies a datatype, NISTSchema-string-pattern-1, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s16311-1237 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-1-2" origin="NIST"><description> + File: NISTSchema-string-pattern-1.xsd + This schema specifies a datatype, NISTSchema-string-pattern-1, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s16311-1237 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-1-3" origin="NIST"><description> + File: NISTSchema-string-pattern-1.xsd + This schema specifies a datatype, NISTSchema-string-pattern-1, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s16311-1237 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-1-4" origin="NIST"><description> + File: NISTSchema-string-pattern-1.xsd + This schema specifies a datatype, NISTSchema-string-pattern-1, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s16311-1237 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-1-5" origin="NIST"><description> + File: NISTSchema-string-pattern-1.xsd + This schema specifies a datatype, NISTSchema-string-pattern-1, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s16311-1237 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-2-1" origin="NIST"><description> + File: NISTSchema-string-pattern-2.xsd + This schema specifies a datatype, NISTSchema-string-pattern-2, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s19500-1840 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-2-2" origin="NIST"><description> + File: NISTSchema-string-pattern-2.xsd + This schema specifies a datatype, NISTSchema-string-pattern-2, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s19500-1840 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-2-3" origin="NIST"><description> + File: NISTSchema-string-pattern-2.xsd + This schema specifies a datatype, NISTSchema-string-pattern-2, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s19500-1840 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-2-4" origin="NIST"><description> + File: NISTSchema-string-pattern-2.xsd + This schema specifies a datatype, NISTSchema-string-pattern-2, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s19500-1840 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-2-5" origin="NIST"><description> + File: NISTSchema-string-pattern-2.xsd + This schema specifies a datatype, NISTSchema-string-pattern-2, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s19500-1840 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-3-1" origin="NIST"><description> + File: NISTSchema-string-pattern-3.xsd + This schema specifies a datatype, NISTSchema-string-pattern-3, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13019-1228 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-3-2" origin="NIST"><description> + File: NISTSchema-string-pattern-3.xsd + This schema specifies a datatype, NISTSchema-string-pattern-3, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13019-1228 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-3-3" origin="NIST"><description> + File: NISTSchema-string-pattern-3.xsd + This schema specifies a datatype, NISTSchema-string-pattern-3, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13019-1228 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-3-4" origin="NIST"><description> + File: NISTSchema-string-pattern-3.xsd + This schema specifies a datatype, NISTSchema-string-pattern-3, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13019-1228 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-3-5" origin="NIST"><description> + File: NISTSchema-string-pattern-3.xsd + This schema specifies a datatype, NISTSchema-string-pattern-3, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13019-1228 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-4-1" origin="NIST"><description> + File: NISTSchema-string-pattern-4.xsd + This schema specifies a datatype, NISTSchema-string-pattern-4, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s10030-1212 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-4-2" origin="NIST"><description> + File: NISTSchema-string-pattern-4.xsd + This schema specifies a datatype, NISTSchema-string-pattern-4, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s10030-1212 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-4-3" origin="NIST"><description> + File: NISTSchema-string-pattern-4.xsd + This schema specifies a datatype, NISTSchema-string-pattern-4, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s10030-1212 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-4-4" origin="NIST"><description> + File: NISTSchema-string-pattern-4.xsd + This schema specifies a datatype, NISTSchema-string-pattern-4, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s10030-1212 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-4-5" origin="NIST"><description> + File: NISTSchema-string-pattern-4.xsd + This schema specifies a datatype, NISTSchema-string-pattern-4, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\n([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s10030-1212 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-5-1" origin="NIST"><description> + File: NISTSchema-string-pattern-5.xsd + This schema specifies a datatype, NISTSchema-string-pattern-5, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s10029-1422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-5-2" origin="NIST"><description> + File: NISTSchema-string-pattern-5.xsd + This schema specifies a datatype, NISTSchema-string-pattern-5, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s10029-1422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-5-3" origin="NIST"><description> + File: NISTSchema-string-pattern-5.xsd + This schema specifies a datatype, NISTSchema-string-pattern-5, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s10029-1422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-5-4" origin="NIST"><description> + File: NISTSchema-string-pattern-5.xsd + This schema specifies a datatype, NISTSchema-string-pattern-5, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s10029-1422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-pattern-5-5" origin="NIST"><description> + File: NISTSchema-string-pattern-5.xsd + This schema specifies a datatype, NISTSchema-string-pattern-5, + which is derived by restriction of built-in type string + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){1}Street\n([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s10029-1422 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-string-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-1, + which is derived by restriction of built-in type string + by facet enumeration with values of: + to + issues + of + information + systems + files + testing + standardization + divisions + repositories + hoc + resources + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-string-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-1, + which is derived by restriction of built-in type string + by facet enumeration with values of: + to + issues + of + information + systems + files + testing + standardization + divisions + repositories + hoc + resources + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-string-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-1, + which is derived by restriction of built-in type string + by facet enumeration with values of: + to + issues + of + information + systems + files + testing + standardization + divisions + repositories + hoc + resources + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-string-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-1, + which is derived by restriction of built-in type string + by facet enumeration with values of: + to + issues + of + information + systems + files + testing + standardization + divisions + repositories + hoc + resources + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-string-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-1, + which is derived by restriction of built-in type string + by facet enumeration with values of: + to + issues + of + information + systems + files + testing + standardization + divisions + repositories + hoc + resources + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-string-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-2, + which is derived by restriction of built-in type string + by facet enumeration with values of: + is + as + also + be + for + specifications + to + target + deployed + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-string-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-2, + which is derived by restriction of built-in type string + by facet enumeration with values of: + is + as + also + be + for + specifications + to + target + deployed + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-string-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-2, + which is derived by restriction of built-in type string + by facet enumeration with values of: + is + as + also + be + for + specifications + to + target + deployed + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-string-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-2, + which is derived by restriction of built-in type string + by facet enumeration with values of: + is + as + also + be + for + specifications + to + target + deployed + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-string-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-2, + which is derived by restriction of built-in type string + by facet enumeration with values of: + is + as + also + be + for + specifications + to + target + deployed + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-string-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-3, + which is derived by restriction of built-in type string + by facet enumeration with values of: + tune + specification + do + files + EC + to + the + that + and + many + cost + The + one + commerce + repository + are + XML + particularly + prominent + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-string-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-3, + which is derived by restriction of built-in type string + by facet enumeration with values of: + tune + specification + do + files + EC + to + the + that + and + many + cost + The + one + commerce + repository + are + XML + particularly + prominent + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-string-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-3, + which is derived by restriction of built-in type string + by facet enumeration with values of: + tune + specification + do + files + EC + to + the + that + and + many + cost + The + one + commerce + repository + are + XML + particularly + prominent + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-string-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-3, + which is derived by restriction of built-in type string + by facet enumeration with values of: + tune + specification + do + files + EC + to + the + that + and + many + cost + The + one + commerce + repository + are + XML + particularly + prominent + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-string-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-3, + which is derived by restriction of built-in type string + by facet enumeration with values of: + tune + specification + do + files + EC + to + the + that + and + many + cost + The + one + commerce + repository + are + XML + particularly + prominent + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-string-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-4, + which is derived by restriction of built-in type string + by facet enumeration with values of: + software + Computing + for + XML + obtained + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-string-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-4, + which is derived by restriction of built-in type string + by facet enumeration with values of: + software + Computing + for + XML + obtained + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-string-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-4, + which is derived by restriction of built-in type string + by facet enumeration with values of: + software + Computing + for + XML + obtained + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-string-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-4, + which is derived by restriction of built-in type string + by facet enumeration with values of: + software + Computing + for + XML + obtained + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-string-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-4, + which is derived by restriction of built-in type string + by facet enumeration with values of: + software + Computing + for + XML + obtained + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-string-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-5, + which is derived by restriction of built-in type string + by facet enumeration with values of: + of + and + software + adoption + called + creation + Trade + Developers + discuss + performance + Conformance + as + reference + XML + implementation + defines + A + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-string-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-5, + which is derived by restriction of built-in type string + by facet enumeration with values of: + of + and + software + adoption + called + creation + Trade + Developers + discuss + performance + Conformance + as + reference + XML + implementation + defines + A + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-string-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-5, + which is derived by restriction of built-in type string + by facet enumeration with values of: + of + and + software + adoption + called + creation + Trade + Developers + discuss + performance + Conformance + as + reference + XML + implementation + defines + A + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-string-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-5, + which is derived by restriction of built-in type string + by facet enumeration with values of: + of + and + software + adoption + called + creation + Trade + Developers + discuss + performance + Conformance + as + reference + XML + implementation + defines + A + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-string-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-string-enumeration-5, + which is derived by restriction of built-in type string + by facet enumeration with values of: + of + and + software + adoption + called + creation + Trade + Developers + discuss + performance + Conformance + as + reference + XML + implementation + defines + A + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-1, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: preserve + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-1, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: preserve + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-1, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: preserve + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-1, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: preserve + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-1, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: preserve + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-2-1" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-2, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-2-2" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-2, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-2-3" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-2, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-2-4" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-2, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-2-5" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-2.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-2, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-3-1" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-3.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-3, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-3-2" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-3.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-3, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-3-3" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-3.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-3, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-3-4" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-3.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-3, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-string-whiteSpace-3-5" origin="NIST"><description> + File: NISTSchema-string-whiteSpace-3.xsd + This schema specifies a datatype, NISTSchema-string-whiteSpace-3, + which is derived by restriction of built-in type string + by facet whiteSpace with a value of: replace + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-string-whiteSpace-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-string-whiteSpace-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-time-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-1, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-time-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-1, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-time-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-1, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-time-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-1, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-time-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-1, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-time-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-2, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 22:02:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-time-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-2, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 22:02:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-time-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-2, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 22:02:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-time-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-2, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 22:02:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-time-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-2, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 22:02:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-time-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-3, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 09:39:25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-time-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-3, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 09:39:25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-time-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-3, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 09:39:25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-time-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-3, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 09:39:25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-time-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-3, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 09:39:25 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-time-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-4, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:07:37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-time-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-4, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:07:37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-time-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-4, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:07:37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-time-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-4, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:07:37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-time-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-4, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 00:07:37 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-time-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-minExclusive-5, + which is derived by restriction of built-in type time + by facet minExclusive with a value of: 23:59:58 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-time-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-1, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-time-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-1, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-time-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-1, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-time-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-1, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-time-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-1, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-time-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-2, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 21:20:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-time-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-2, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 21:20:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-time-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-2, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 21:20:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-time-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-2, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 21:20:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-time-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-2, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 21:20:05 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-time-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-3, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 17:28:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-time-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-3, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 17:28:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-time-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-3, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 17:28:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-time-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-3, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 17:28:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-time-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-3, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 17:28:08 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-time-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-4, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 13:56:38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-time-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-4, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 13:56:38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-time-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-4, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 13:56:38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-time-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-4, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 13:56:38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-time-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-4, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 13:56:38 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-time-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-minInclusive-5, + which is derived by restriction of built-in type time + by facet minInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-1, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 00:00:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-2, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:37:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-2, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:37:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-2, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:37:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-2, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:37:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-2, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:37:09 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-3, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 16:27:11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-3, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 16:27:11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-3, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 16:27:11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-3, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 16:27:11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-3, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 16:27:11 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-4, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 18:26:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-4, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 18:26:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-4, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 18:26:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-4, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 18:26:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-4, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 18:26:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-5, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-5, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-5, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-5, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-time-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxExclusive-5, + which is derived by restriction of built-in type time + by facet maxExclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-1, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 00:00:00 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-2, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 07:57:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-2, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 07:57:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-2, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 07:57:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-2, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 07:57:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-2, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 07:57:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-3, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 19:54:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-3, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 19:54:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-3, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 19:54:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-3, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 19:54:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-3, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 19:54:01 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-4, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 09:14:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-4, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 09:14:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-4, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 09:14:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-4, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 09:14:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-4, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 09:14:43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-5, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-5, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-5, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-5, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-time-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-time-maxInclusive-5, + which is derived by restriction of built-in type time + by facet maxInclusive with a value of: 23:59:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-1-1" origin="NIST"><description> + File: NISTSchema-time-pattern-1.xsd + This schema specifies a datatype, NISTSchema-time-pattern-1, + which is derived by restriction of built-in type time + by facet pattern with a value of: 08:\d\d:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-1-2" origin="NIST"><description> + File: NISTSchema-time-pattern-1.xsd + This schema specifies a datatype, NISTSchema-time-pattern-1, + which is derived by restriction of built-in type time + by facet pattern with a value of: 08:\d\d:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-1-3" origin="NIST"><description> + File: NISTSchema-time-pattern-1.xsd + This schema specifies a datatype, NISTSchema-time-pattern-1, + which is derived by restriction of built-in type time + by facet pattern with a value of: 08:\d\d:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-1-4" origin="NIST"><description> + File: NISTSchema-time-pattern-1.xsd + This schema specifies a datatype, NISTSchema-time-pattern-1, + which is derived by restriction of built-in type time + by facet pattern with a value of: 08:\d\d:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-1-5" origin="NIST"><description> + File: NISTSchema-time-pattern-1.xsd + This schema specifies a datatype, NISTSchema-time-pattern-1, + which is derived by restriction of built-in type time + by facet pattern with a value of: 08:\d\d:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-2-1" origin="NIST"><description> + File: NISTSchema-time-pattern-2.xsd + This schema specifies a datatype, NISTSchema-time-pattern-2, + which is derived by restriction of built-in type time + by facet pattern with a value of: \d\d:\d\d:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-2-2" origin="NIST"><description> + File: NISTSchema-time-pattern-2.xsd + This schema specifies a datatype, NISTSchema-time-pattern-2, + which is derived by restriction of built-in type time + by facet pattern with a value of: \d\d:\d\d:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-2-3" origin="NIST"><description> + File: NISTSchema-time-pattern-2.xsd + This schema specifies a datatype, NISTSchema-time-pattern-2, + which is derived by restriction of built-in type time + by facet pattern with a value of: \d\d:\d\d:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-2-4" origin="NIST"><description> + File: NISTSchema-time-pattern-2.xsd + This schema specifies a datatype, NISTSchema-time-pattern-2, + which is derived by restriction of built-in type time + by facet pattern with a value of: \d\d:\d\d:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-2-5" origin="NIST"><description> + File: NISTSchema-time-pattern-2.xsd + This schema specifies a datatype, NISTSchema-time-pattern-2, + which is derived by restriction of built-in type time + by facet pattern with a value of: \d\d:\d\d:59 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-3-1" origin="NIST"><description> + File: NISTSchema-time-pattern-3.xsd + This schema specifies a datatype, NISTSchema-time-pattern-3, + which is derived by restriction of built-in type time + by facet pattern with a value of: 21:34:07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-3-2" origin="NIST"><description> + File: NISTSchema-time-pattern-3.xsd + This schema specifies a datatype, NISTSchema-time-pattern-3, + which is derived by restriction of built-in type time + by facet pattern with a value of: 21:34:07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-3-3" origin="NIST"><description> + File: NISTSchema-time-pattern-3.xsd + This schema specifies a datatype, NISTSchema-time-pattern-3, + which is derived by restriction of built-in type time + by facet pattern with a value of: 21:34:07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-3-4" origin="NIST"><description> + File: NISTSchema-time-pattern-3.xsd + This schema specifies a datatype, NISTSchema-time-pattern-3, + which is derived by restriction of built-in type time + by facet pattern with a value of: 21:34:07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-3-5" origin="NIST"><description> + File: NISTSchema-time-pattern-3.xsd + This schema specifies a datatype, NISTSchema-time-pattern-3, + which is derived by restriction of built-in type time + by facet pattern with a value of: 21:34:07 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-4-1" origin="NIST"><description> + File: NISTSchema-time-pattern-4.xsd + This schema specifies a datatype, NISTSchema-time-pattern-4, + which is derived by restriction of built-in type time + by facet pattern with a value of: 15:40:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-4-2" origin="NIST"><description> + File: NISTSchema-time-pattern-4.xsd + This schema specifies a datatype, NISTSchema-time-pattern-4, + which is derived by restriction of built-in type time + by facet pattern with a value of: 15:40:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-4-3" origin="NIST"><description> + File: NISTSchema-time-pattern-4.xsd + This schema specifies a datatype, NISTSchema-time-pattern-4, + which is derived by restriction of built-in type time + by facet pattern with a value of: 15:40:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-4-4" origin="NIST"><description> + File: NISTSchema-time-pattern-4.xsd + This schema specifies a datatype, NISTSchema-time-pattern-4, + which is derived by restriction of built-in type time + by facet pattern with a value of: 15:40:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-4-5" origin="NIST"><description> + File: NISTSchema-time-pattern-4.xsd + This schema specifies a datatype, NISTSchema-time-pattern-4, + which is derived by restriction of built-in type time + by facet pattern with a value of: 15:40:\d\d + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-5-1" origin="NIST"><description> + File: NISTSchema-time-pattern-5.xsd + This schema specifies a datatype, NISTSchema-time-pattern-5, + which is derived by restriction of built-in type time + by facet pattern with a value of: 23:21:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-5-2" origin="NIST"><description> + File: NISTSchema-time-pattern-5.xsd + This schema specifies a datatype, NISTSchema-time-pattern-5, + which is derived by restriction of built-in type time + by facet pattern with a value of: 23:21:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-5-3" origin="NIST"><description> + File: NISTSchema-time-pattern-5.xsd + This schema specifies a datatype, NISTSchema-time-pattern-5, + which is derived by restriction of built-in type time + by facet pattern with a value of: 23:21:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-5-4" origin="NIST"><description> + File: NISTSchema-time-pattern-5.xsd + This schema specifies a datatype, NISTSchema-time-pattern-5, + which is derived by restriction of built-in type time + by facet pattern with a value of: 23:21:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-pattern-5-5" origin="NIST"><description> + File: NISTSchema-time-pattern-5.xsd + This schema specifies a datatype, NISTSchema-time-pattern-5, + which is derived by restriction of built-in type time + by facet pattern with a value of: 23:21:29 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-time-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-1, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 04:48:44 + 16:06:54 + 06:54:42 + 15:23:55 + 16:09:18 + 12:14:05 + 00:12:27 + 15:06:30 + 10:47:10 + 00:50:58 + 06:21:55 + 17:41:14 + 21:41:34 + 01:37:08 + 17:54:24 + 10:28:16 + 21:50:14 + 14:20:03 + 15:10:44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-time-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-1, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 04:48:44 + 16:06:54 + 06:54:42 + 15:23:55 + 16:09:18 + 12:14:05 + 00:12:27 + 15:06:30 + 10:47:10 + 00:50:58 + 06:21:55 + 17:41:14 + 21:41:34 + 01:37:08 + 17:54:24 + 10:28:16 + 21:50:14 + 14:20:03 + 15:10:44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-time-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-1, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 04:48:44 + 16:06:54 + 06:54:42 + 15:23:55 + 16:09:18 + 12:14:05 + 00:12:27 + 15:06:30 + 10:47:10 + 00:50:58 + 06:21:55 + 17:41:14 + 21:41:34 + 01:37:08 + 17:54:24 + 10:28:16 + 21:50:14 + 14:20:03 + 15:10:44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-time-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-1, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 04:48:44 + 16:06:54 + 06:54:42 + 15:23:55 + 16:09:18 + 12:14:05 + 00:12:27 + 15:06:30 + 10:47:10 + 00:50:58 + 06:21:55 + 17:41:14 + 21:41:34 + 01:37:08 + 17:54:24 + 10:28:16 + 21:50:14 + 14:20:03 + 15:10:44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-time-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-1, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 04:48:44 + 16:06:54 + 06:54:42 + 15:23:55 + 16:09:18 + 12:14:05 + 00:12:27 + 15:06:30 + 10:47:10 + 00:50:58 + 06:21:55 + 17:41:14 + 21:41:34 + 01:37:08 + 17:54:24 + 10:28:16 + 21:50:14 + 14:20:03 + 15:10:44 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-time-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-2, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 20:50:46 + 04:45:56 + 15:13:13 + 11:21:55 + 08:11:21 + 10:48:09 + 09:47:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-time-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-2, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 20:50:46 + 04:45:56 + 15:13:13 + 11:21:55 + 08:11:21 + 10:48:09 + 09:47:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-time-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-2, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 20:50:46 + 04:45:56 + 15:13:13 + 11:21:55 + 08:11:21 + 10:48:09 + 09:47:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-time-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-2, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 20:50:46 + 04:45:56 + 15:13:13 + 11:21:55 + 08:11:21 + 10:48:09 + 09:47:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-time-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-2, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 20:50:46 + 04:45:56 + 15:13:13 + 11:21:55 + 08:11:21 + 10:48:09 + 09:47:26 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-time-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-3, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:44:17 + 21:45:03 + 21:45:46 + 02:14:32 + 03:09:12 + 07:53:38 + 06:30:22 + 04:31:06 + 23:50:30 + 11:24:49 + 14:03:53 + 17:16:39 + 15:17:58 + 17:31:21 + 04:52:43 + 02:47:57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-time-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-3, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:44:17 + 21:45:03 + 21:45:46 + 02:14:32 + 03:09:12 + 07:53:38 + 06:30:22 + 04:31:06 + 23:50:30 + 11:24:49 + 14:03:53 + 17:16:39 + 15:17:58 + 17:31:21 + 04:52:43 + 02:47:57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-time-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-3, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:44:17 + 21:45:03 + 21:45:46 + 02:14:32 + 03:09:12 + 07:53:38 + 06:30:22 + 04:31:06 + 23:50:30 + 11:24:49 + 14:03:53 + 17:16:39 + 15:17:58 + 17:31:21 + 04:52:43 + 02:47:57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-time-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-3, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:44:17 + 21:45:03 + 21:45:46 + 02:14:32 + 03:09:12 + 07:53:38 + 06:30:22 + 04:31:06 + 23:50:30 + 11:24:49 + 14:03:53 + 17:16:39 + 15:17:58 + 17:31:21 + 04:52:43 + 02:47:57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-time-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-3, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:44:17 + 21:45:03 + 21:45:46 + 02:14:32 + 03:09:12 + 07:53:38 + 06:30:22 + 04:31:06 + 23:50:30 + 11:24:49 + 14:03:53 + 17:16:39 + 15:17:58 + 17:31:21 + 04:52:43 + 02:47:57 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-time-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-4, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 06:07:42 + 08:27:15 + 19:19:29 + 20:04:20 + 03:36:56 + 10:50:23 + 03:38:12 + 18:00:48 + 07:18:33 + 20:55:47 + 21:19:59 + 01:19:37 + 05:55:55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-time-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-4, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 06:07:42 + 08:27:15 + 19:19:29 + 20:04:20 + 03:36:56 + 10:50:23 + 03:38:12 + 18:00:48 + 07:18:33 + 20:55:47 + 21:19:59 + 01:19:37 + 05:55:55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-time-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-4, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 06:07:42 + 08:27:15 + 19:19:29 + 20:04:20 + 03:36:56 + 10:50:23 + 03:38:12 + 18:00:48 + 07:18:33 + 20:55:47 + 21:19:59 + 01:19:37 + 05:55:55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-time-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-4, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 06:07:42 + 08:27:15 + 19:19:29 + 20:04:20 + 03:36:56 + 10:50:23 + 03:38:12 + 18:00:48 + 07:18:33 + 20:55:47 + 21:19:59 + 01:19:37 + 05:55:55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-time-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-4, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 06:07:42 + 08:27:15 + 19:19:29 + 20:04:20 + 03:36:56 + 10:50:23 + 03:38:12 + 18:00:48 + 07:18:33 + 20:55:47 + 21:19:59 + 01:19:37 + 05:55:55 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-time-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-5, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:38:20 + 21:02:47 + 07:51:19 + 06:59:20 + 23:57:27 + 19:15:04 + 23:11:27 + 03:57:39 + 23:29:02 + 08:40:54 + 13:45:40 + 20:22:44 + 21:04:16 + 23:08:30 + 22:43:12 + 00:58:56 + 06:09:12 + 13:43:48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-time-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-5, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:38:20 + 21:02:47 + 07:51:19 + 06:59:20 + 23:57:27 + 19:15:04 + 23:11:27 + 03:57:39 + 23:29:02 + 08:40:54 + 13:45:40 + 20:22:44 + 21:04:16 + 23:08:30 + 22:43:12 + 00:58:56 + 06:09:12 + 13:43:48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-time-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-5, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:38:20 + 21:02:47 + 07:51:19 + 06:59:20 + 23:57:27 + 19:15:04 + 23:11:27 + 03:57:39 + 23:29:02 + 08:40:54 + 13:45:40 + 20:22:44 + 21:04:16 + 23:08:30 + 22:43:12 + 00:58:56 + 06:09:12 + 13:43:48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-time-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-5, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:38:20 + 21:02:47 + 07:51:19 + 06:59:20 + 23:57:27 + 19:15:04 + 23:11:27 + 03:57:39 + 23:29:02 + 08:40:54 + 13:45:40 + 20:22:44 + 21:04:16 + 23:08:30 + 22:43:12 + 00:58:56 + 06:09:12 + 13:43:48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-time-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-time-enumeration-5, + which is derived by restriction of built-in type time + by facet enumeration with values of: + 23:38:20 + 21:02:47 + 07:51:19 + 06:59:20 + 23:57:27 + 19:15:04 + 23:11:27 + 03:57:39 + 23:29:02 + 08:40:54 + 13:45:40 + 20:22:44 + 21:04:16 + 23:08:30 + 22:43:12 + 00:58:56 + 06:09:12 + 13:43:48 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-time-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-time-whiteSpace-1, + which is derived by restriction of built-in type time + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-time-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-time-whiteSpace-1, + which is derived by restriction of built-in type time + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-time-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-time-whiteSpace-1, + which is derived by restriction of built-in type time + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-time-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-time-whiteSpace-1, + which is derived by restriction of built-in type time + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-time-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-time-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-time-whiteSpace-1, + which is derived by restriction of built-in type time + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-time-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-time-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-1-1" origin="NIST"><description> + File: NISTSchema-token-maxLength-1.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-1, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-2-1" origin="NIST"><description> + File: NISTSchema-token-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-2, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 77 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-2-2" origin="NIST"><description> + File: NISTSchema-token-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-2, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 77 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-2-3" origin="NIST"><description> + File: NISTSchema-token-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-2, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 77 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-2-4" origin="NIST"><description> + File: NISTSchema-token-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-2, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 77 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-2-5" origin="NIST"><description> + File: NISTSchema-token-maxLength-2.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-2, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 77 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-3-1" origin="NIST"><description> + File: NISTSchema-token-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-3, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 387 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-3-2" origin="NIST"><description> + File: NISTSchema-token-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-3, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 387 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-3-3" origin="NIST"><description> + File: NISTSchema-token-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-3, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 387 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-3-4" origin="NIST"><description> + File: NISTSchema-token-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-3, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 387 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-3-5" origin="NIST"><description> + File: NISTSchema-token-maxLength-3.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-3, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 387 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-4-1" origin="NIST"><description> + File: NISTSchema-token-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-4, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-4-2" origin="NIST"><description> + File: NISTSchema-token-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-4, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-4-3" origin="NIST"><description> + File: NISTSchema-token-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-4, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-4-4" origin="NIST"><description> + File: NISTSchema-token-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-4, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-4-5" origin="NIST"><description> + File: NISTSchema-token-maxLength-4.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-4, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 251 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-5-1" origin="NIST"><description> + File: NISTSchema-token-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-5, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-5-2" origin="NIST"><description> + File: NISTSchema-token-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-5, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-5-3" origin="NIST"><description> + File: NISTSchema-token-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-5, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-5-4" origin="NIST"><description> + File: NISTSchema-token-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-5, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-maxLength-5-5" origin="NIST"><description> + File: NISTSchema-token-maxLength-5.xsd + This schema specifies a datatype, NISTSchema-token-maxLength-5, + which is derived by restriction of built-in type token + by facet maxLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-maxLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-maxLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-1-1" origin="NIST"><description> + File: NISTSchema-token-minLength-1.xsd + This schema specifies a datatype, NISTSchema-token-minLength-1, + which is derived by restriction of built-in type token + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-1-2" origin="NIST"><description> + File: NISTSchema-token-minLength-1.xsd + This schema specifies a datatype, NISTSchema-token-minLength-1, + which is derived by restriction of built-in type token + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-1-3" origin="NIST"><description> + File: NISTSchema-token-minLength-1.xsd + This schema specifies a datatype, NISTSchema-token-minLength-1, + which is derived by restriction of built-in type token + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-1-4" origin="NIST"><description> + File: NISTSchema-token-minLength-1.xsd + This schema specifies a datatype, NISTSchema-token-minLength-1, + which is derived by restriction of built-in type token + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-1-5" origin="NIST"><description> + File: NISTSchema-token-minLength-1.xsd + This schema specifies a datatype, NISTSchema-token-minLength-1, + which is derived by restriction of built-in type token + by facet minLength with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-2-1" origin="NIST"><description> + File: NISTSchema-token-minLength-2.xsd + This schema specifies a datatype, NISTSchema-token-minLength-2, + which is derived by restriction of built-in type token + by facet minLength with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-2-2" origin="NIST"><description> + File: NISTSchema-token-minLength-2.xsd + This schema specifies a datatype, NISTSchema-token-minLength-2, + which is derived by restriction of built-in type token + by facet minLength with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-2-3" origin="NIST"><description> + File: NISTSchema-token-minLength-2.xsd + This schema specifies a datatype, NISTSchema-token-minLength-2, + which is derived by restriction of built-in type token + by facet minLength with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-2-4" origin="NIST"><description> + File: NISTSchema-token-minLength-2.xsd + This schema specifies a datatype, NISTSchema-token-minLength-2, + which is derived by restriction of built-in type token + by facet minLength with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-2-5" origin="NIST"><description> + File: NISTSchema-token-minLength-2.xsd + This schema specifies a datatype, NISTSchema-token-minLength-2, + which is derived by restriction of built-in type token + by facet minLength with a value of: 895 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-3-1" origin="NIST"><description> + File: NISTSchema-token-minLength-3.xsd + This schema specifies a datatype, NISTSchema-token-minLength-3, + which is derived by restriction of built-in type token + by facet minLength with a value of: 380 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-3-2" origin="NIST"><description> + File: NISTSchema-token-minLength-3.xsd + This schema specifies a datatype, NISTSchema-token-minLength-3, + which is derived by restriction of built-in type token + by facet minLength with a value of: 380 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-3-3" origin="NIST"><description> + File: NISTSchema-token-minLength-3.xsd + This schema specifies a datatype, NISTSchema-token-minLength-3, + which is derived by restriction of built-in type token + by facet minLength with a value of: 380 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-3-4" origin="NIST"><description> + File: NISTSchema-token-minLength-3.xsd + This schema specifies a datatype, NISTSchema-token-minLength-3, + which is derived by restriction of built-in type token + by facet minLength with a value of: 380 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-3-5" origin="NIST"><description> + File: NISTSchema-token-minLength-3.xsd + This schema specifies a datatype, NISTSchema-token-minLength-3, + which is derived by restriction of built-in type token + by facet minLength with a value of: 380 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-4-1" origin="NIST"><description> + File: NISTSchema-token-minLength-4.xsd + This schema specifies a datatype, NISTSchema-token-minLength-4, + which is derived by restriction of built-in type token + by facet minLength with a value of: 493 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-4-2" origin="NIST"><description> + File: NISTSchema-token-minLength-4.xsd + This schema specifies a datatype, NISTSchema-token-minLength-4, + which is derived by restriction of built-in type token + by facet minLength with a value of: 493 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-4-3" origin="NIST"><description> + File: NISTSchema-token-minLength-4.xsd + This schema specifies a datatype, NISTSchema-token-minLength-4, + which is derived by restriction of built-in type token + by facet minLength with a value of: 493 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-4-4" origin="NIST"><description> + File: NISTSchema-token-minLength-4.xsd + This schema specifies a datatype, NISTSchema-token-minLength-4, + which is derived by restriction of built-in type token + by facet minLength with a value of: 493 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-4-5" origin="NIST"><description> + File: NISTSchema-token-minLength-4.xsd + This schema specifies a datatype, NISTSchema-token-minLength-4, + which is derived by restriction of built-in type token + by facet minLength with a value of: 493 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-5-1" origin="NIST"><description> + File: NISTSchema-token-minLength-5.xsd + This schema specifies a datatype, NISTSchema-token-minLength-5, + which is derived by restriction of built-in type token + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-5-2" origin="NIST"><description> + File: NISTSchema-token-minLength-5.xsd + This schema specifies a datatype, NISTSchema-token-minLength-5, + which is derived by restriction of built-in type token + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-5-3" origin="NIST"><description> + File: NISTSchema-token-minLength-5.xsd + This schema specifies a datatype, NISTSchema-token-minLength-5, + which is derived by restriction of built-in type token + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-5-4" origin="NIST"><description> + File: NISTSchema-token-minLength-5.xsd + This schema specifies a datatype, NISTSchema-token-minLength-5, + which is derived by restriction of built-in type token + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-minLength-5-5" origin="NIST"><description> + File: NISTSchema-token-minLength-5.xsd + This schema specifies a datatype, NISTSchema-token-minLength-5, + which is derived by restriction of built-in type token + by facet minLength with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-minLength-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-minLength-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-1-1" origin="NIST"><description> + File: NISTSchema-token-length-1.xsd + This schema specifies a datatype, NISTSchema-token-length-1, + which is derived by restriction of built-in type token + by facet length with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-2-1" origin="NIST"><description> + File: NISTSchema-token-length-2.xsd + This schema specifies a datatype, NISTSchema-token-length-2, + which is derived by restriction of built-in type token + by facet length with a value of: 470 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-2-2" origin="NIST"><description> + File: NISTSchema-token-length-2.xsd + This schema specifies a datatype, NISTSchema-token-length-2, + which is derived by restriction of built-in type token + by facet length with a value of: 470 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-2-3" origin="NIST"><description> + File: NISTSchema-token-length-2.xsd + This schema specifies a datatype, NISTSchema-token-length-2, + which is derived by restriction of built-in type token + by facet length with a value of: 470 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-2-4" origin="NIST"><description> + File: NISTSchema-token-length-2.xsd + This schema specifies a datatype, NISTSchema-token-length-2, + which is derived by restriction of built-in type token + by facet length with a value of: 470 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-2-5" origin="NIST"><description> + File: NISTSchema-token-length-2.xsd + This schema specifies a datatype, NISTSchema-token-length-2, + which is derived by restriction of built-in type token + by facet length with a value of: 470 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-3-1" origin="NIST"><description> + File: NISTSchema-token-length-3.xsd + This schema specifies a datatype, NISTSchema-token-length-3, + which is derived by restriction of built-in type token + by facet length with a value of: 905 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-3-2" origin="NIST"><description> + File: NISTSchema-token-length-3.xsd + This schema specifies a datatype, NISTSchema-token-length-3, + which is derived by restriction of built-in type token + by facet length with a value of: 905 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-3-3" origin="NIST"><description> + File: NISTSchema-token-length-3.xsd + This schema specifies a datatype, NISTSchema-token-length-3, + which is derived by restriction of built-in type token + by facet length with a value of: 905 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-3-4" origin="NIST"><description> + File: NISTSchema-token-length-3.xsd + This schema specifies a datatype, NISTSchema-token-length-3, + which is derived by restriction of built-in type token + by facet length with a value of: 905 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-3-5" origin="NIST"><description> + File: NISTSchema-token-length-3.xsd + This schema specifies a datatype, NISTSchema-token-length-3, + which is derived by restriction of built-in type token + by facet length with a value of: 905 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-4-1" origin="NIST"><description> + File: NISTSchema-token-length-4.xsd + This schema specifies a datatype, NISTSchema-token-length-4, + which is derived by restriction of built-in type token + by facet length with a value of: 569 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-4-2" origin="NIST"><description> + File: NISTSchema-token-length-4.xsd + This schema specifies a datatype, NISTSchema-token-length-4, + which is derived by restriction of built-in type token + by facet length with a value of: 569 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-4-3" origin="NIST"><description> + File: NISTSchema-token-length-4.xsd + This schema specifies a datatype, NISTSchema-token-length-4, + which is derived by restriction of built-in type token + by facet length with a value of: 569 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-4-4" origin="NIST"><description> + File: NISTSchema-token-length-4.xsd + This schema specifies a datatype, NISTSchema-token-length-4, + which is derived by restriction of built-in type token + by facet length with a value of: 569 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-4-5" origin="NIST"><description> + File: NISTSchema-token-length-4.xsd + This schema specifies a datatype, NISTSchema-token-length-4, + which is derived by restriction of built-in type token + by facet length with a value of: 569 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-5-1" origin="NIST"><description> + File: NISTSchema-token-length-5.xsd + This schema specifies a datatype, NISTSchema-token-length-5, + which is derived by restriction of built-in type token + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-5-2" origin="NIST"><description> + File: NISTSchema-token-length-5.xsd + This schema specifies a datatype, NISTSchema-token-length-5, + which is derived by restriction of built-in type token + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-5-3" origin="NIST"><description> + File: NISTSchema-token-length-5.xsd + This schema specifies a datatype, NISTSchema-token-length-5, + which is derived by restriction of built-in type token + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-5-4" origin="NIST"><description> + File: NISTSchema-token-length-5.xsd + This schema specifies a datatype, NISTSchema-token-length-5, + which is derived by restriction of built-in type token + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-length-5-5" origin="NIST"><description> + File: NISTSchema-token-length-5.xsd + This schema specifies a datatype, NISTSchema-token-length-5, + which is derived by restriction of built-in type token + by facet length with a value of: 1000 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-length-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-length-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-1-1" origin="NIST"><description> + File: NISTSchema-token-pattern-1.xsd + This schema specifies a datatype, NISTSchema-token-pattern-1, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s14297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-1-2" origin="NIST"><description> + File: NISTSchema-token-pattern-1.xsd + This schema specifies a datatype, NISTSchema-token-pattern-1, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s14297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-1-3" origin="NIST"><description> + File: NISTSchema-token-pattern-1.xsd + This schema specifies a datatype, NISTSchema-token-pattern-1, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s14297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-1-4" origin="NIST"><description> + File: NISTSchema-token-pattern-1.xsd + This schema specifies a datatype, NISTSchema-token-pattern-1, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s14297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-1-5" origin="NIST"><description> + File: NISTSchema-token-pattern-1.xsd + This schema specifies a datatype, NISTSchema-token-pattern-1, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s14297 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-2-1" origin="NIST"><description> + File: NISTSchema-token-pattern-2.xsd + This schema specifies a datatype, NISTSchema-token-pattern-2, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s12230-1968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-2-2" origin="NIST"><description> + File: NISTSchema-token-pattern-2.xsd + This schema specifies a datatype, NISTSchema-token-pattern-2, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s12230-1968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-2-3" origin="NIST"><description> + File: NISTSchema-token-pattern-2.xsd + This schema specifies a datatype, NISTSchema-token-pattern-2, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s12230-1968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-2-4" origin="NIST"><description> + File: NISTSchema-token-pattern-2.xsd + This schema specifies a datatype, NISTSchema-token-pattern-2, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s12230-1968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-2-5" origin="NIST"><description> + File: NISTSchema-token-pattern-2.xsd + This schema specifies a datatype, NISTSchema-token-pattern-2, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){2}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s12230-1968 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-3-1" origin="NIST"><description> + File: NISTSchema-token-pattern-3.xsd + This schema specifies a datatype, NISTSchema-token-pattern-3, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s18640 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-3-2" origin="NIST"><description> + File: NISTSchema-token-pattern-3.xsd + This schema specifies a datatype, NISTSchema-token-pattern-3, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s18640 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-3-3" origin="NIST"><description> + File: NISTSchema-token-pattern-3.xsd + This schema specifies a datatype, NISTSchema-token-pattern-3, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s18640 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-3-4" origin="NIST"><description> + File: NISTSchema-token-pattern-3.xsd + This schema specifies a datatype, NISTSchema-token-pattern-3, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s18640 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-3-5" origin="NIST"><description> + File: NISTSchema-token-pattern-3.xsd + This schema specifies a datatype, NISTSchema-token-pattern-3, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){3}Street\s([A-Z][a-z]{1,20}\s){1},\s[A-Z]{2}\s18640 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-4-1" origin="NIST"><description> + File: NISTSchema-token-pattern-4.xsd + This schema specifies a datatype, NISTSchema-token-pattern-4, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s15549-1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-4-2" origin="NIST"><description> + File: NISTSchema-token-pattern-4.xsd + This schema specifies a datatype, NISTSchema-token-pattern-4, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s15549-1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-4-3" origin="NIST"><description> + File: NISTSchema-token-pattern-4.xsd + This schema specifies a datatype, NISTSchema-token-pattern-4, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s15549-1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-4-4" origin="NIST"><description> + File: NISTSchema-token-pattern-4.xsd + This schema specifies a datatype, NISTSchema-token-pattern-4, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s15549-1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-4-5" origin="NIST"><description> + File: NISTSchema-token-pattern-4.xsd + This schema specifies a datatype, NISTSchema-token-pattern-4, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){5}Street\s([A-Z][a-z]{1,20}\s){3},\s[A-Z]{2}\s15549-1978 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-5-1" origin="NIST"><description> + File: NISTSchema-token-pattern-5.xsd + This schema specifies a datatype, NISTSchema-token-pattern-5, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){4}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13121-1314 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-5-2" origin="NIST"><description> + File: NISTSchema-token-pattern-5.xsd + This schema specifies a datatype, NISTSchema-token-pattern-5, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){4}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13121-1314 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-5-3" origin="NIST"><description> + File: NISTSchema-token-pattern-5.xsd + This schema specifies a datatype, NISTSchema-token-pattern-5, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){4}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13121-1314 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-5-4" origin="NIST"><description> + File: NISTSchema-token-pattern-5.xsd + This schema specifies a datatype, NISTSchema-token-pattern-5, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){4}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13121-1314 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-pattern-5-5" origin="NIST"><description> + File: NISTSchema-token-pattern-5.xsd + This schema specifies a datatype, NISTSchema-token-pattern-5, + which is derived by restriction of built-in type token + by facet pattern with a value of: \d{1,5}\s([A-Z][a-z]{1,20}\s){4}Street\s([A-Z][a-z]{1,20}\s){2},\s[A-Z]{2}\s13121-1314 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-token-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-1, + which is derived by restriction of built-in type token + by facet enumeration with values of: + to + for + a + wireless + these + industry + both + XML + commerce + available + robust + of + choices + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-token-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-1, + which is derived by restriction of built-in type token + by facet enumeration with values of: + to + for + a + wireless + these + industry + both + XML + commerce + available + robust + of + choices + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-token-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-1, + which is derived by restriction of built-in type token + by facet enumeration with values of: + to + for + a + wireless + these + industry + both + XML + commerce + available + robust + of + choices + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-token-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-1, + which is derived by restriction of built-in type token + by facet enumeration with values of: + to + for + a + wireless + these + industry + both + XML + commerce + available + robust + of + choices + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-token-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-1, + which is derived by restriction of built-in type token + by facet enumeration with values of: + to + for + a + wireless + these + industry + both + XML + commerce + available + robust + of + choices + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-token-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-2, + which is derived by restriction of built-in type token + by facet enumeration with values of: + Although + Errors + Additionally + are + eXtensible + software + transmit + two + Furthermore + computing + XML + known + prototype + offer + allow + and + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-token-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-2, + which is derived by restriction of built-in type token + by facet enumeration with values of: + Although + Errors + Additionally + are + eXtensible + software + transmit + two + Furthermore + computing + XML + known + prototype + offer + allow + and + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-token-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-2, + which is derived by restriction of built-in type token + by facet enumeration with values of: + Although + Errors + Additionally + are + eXtensible + software + transmit + two + Furthermore + computing + XML + known + prototype + offer + allow + and + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-token-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-2, + which is derived by restriction of built-in type token + by facet enumeration with values of: + Although + Errors + Additionally + are + eXtensible + software + transmit + two + Furthermore + computing + XML + known + prototype + offer + allow + and + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-token-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-2, + which is derived by restriction of built-in type token + by facet enumeration with values of: + Although + Errors + Additionally + are + eXtensible + software + transmit + two + Furthermore + computing + XML + known + prototype + offer + allow + and + will + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-token-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-3, + which is derived by restriction of built-in type token + by facet enumeration with values of: + The + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-token-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-3, + which is derived by restriction of built-in type token + by facet enumeration with values of: + The + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-token-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-3, + which is derived by restriction of built-in type token + by facet enumeration with values of: + The + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-token-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-3, + which is derived by restriction of built-in type token + by facet enumeration with values of: + The + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-token-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-3, + which is derived by restriction of built-in type token + by facet enumeration with values of: + The + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-token-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-4, + which is derived by restriction of built-in type token + by facet enumeration with values of: + systems + transactional + of + for + become + organizations + correctness + business + manage + tools + As + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-token-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-4, + which is derived by restriction of built-in type token + by facet enumeration with values of: + systems + transactional + of + for + become + organizations + correctness + business + manage + tools + As + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-token-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-4, + which is derived by restriction of built-in type token + by facet enumeration with values of: + systems + transactional + of + for + become + organizations + correctness + business + manage + tools + As + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-token-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-4, + which is derived by restriction of built-in type token + by facet enumeration with values of: + systems + transactional + of + for + become + organizations + correctness + business + manage + tools + As + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-token-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-4, + which is derived by restriction of built-in type token + by facet enumeration with values of: + systems + transactional + of + for + become + organizations + correctness + business + manage + tools + As + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-token-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-5, + which is derived by restriction of built-in type token + by facet enumeration with values of: + versions + that + its + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-token-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-5, + which is derived by restriction of built-in type token + by facet enumeration with values of: + versions + that + its + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-token-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-5, + which is derived by restriction of built-in type token + by facet enumeration with values of: + versions + that + its + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-token-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-5, + which is derived by restriction of built-in type token + by facet enumeration with values of: + versions + that + its + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-token-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-token-enumeration-5, + which is derived by restriction of built-in type token + by facet enumeration with values of: + versions + that + its + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-token-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-token-whiteSpace-1, + which is derived by restriction of built-in type token + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-token-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-token-whiteSpace-1, + which is derived by restriction of built-in type token + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-token-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-token-whiteSpace-1, + which is derived by restriction of built-in type token + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-token-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-token-whiteSpace-1, + which is derived by restriction of built-in type token + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-token-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-token-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-token-whiteSpace-1, + which is derived by restriction of built-in type token + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-token-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-token-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 24 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 114 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 45 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet minExclusive with a value of: 254 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 80 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 17 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 62 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 62 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 62 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 62 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 62 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-minInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet minInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 60 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 60 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 60 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 60 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 60 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 200 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 200 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 200 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 200 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 200 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 12 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxExclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxExclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-1, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-2, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 224 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 71 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 71 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 71 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 71 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-3, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 71 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-4, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 111 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-maxInclusive-5, + which is derived by restriction of built-in type unsignedByte + by facet maxInclusive with a value of: 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-fractionDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-fractionDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-fractionDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-fractionDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-fractionDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-1, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-2, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-2, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-2, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-2, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-2, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-3, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-3, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-3, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-3, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-totalDigits-3, + which is derived by restriction of built-in type unsignedByte + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-1, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-1, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-1, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-1, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-1, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-2, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-2, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-2, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-2, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-2, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-3, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-3, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-3, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-3, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-pattern-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-pattern-3, + which is derived by restriction of built-in type unsignedByte + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-1, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 55 + 3 + 255 + 93 + 21 + 8 + 4 + 255 + 2 + 1 + 92 + 44 + 39 + 4 + 7 + 4 + 2 + 255 + 82 + 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-1, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 55 + 3 + 255 + 93 + 21 + 8 + 4 + 255 + 2 + 1 + 92 + 44 + 39 + 4 + 7 + 4 + 2 + 255 + 82 + 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-1, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 55 + 3 + 255 + 93 + 21 + 8 + 4 + 255 + 2 + 1 + 92 + 44 + 39 + 4 + 7 + 4 + 2 + 255 + 82 + 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-1, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 55 + 3 + 255 + 93 + 21 + 8 + 4 + 255 + 2 + 1 + 92 + 44 + 39 + 4 + 7 + 4 + 2 + 255 + 82 + 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-1, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 55 + 3 + 255 + 93 + 21 + 8 + 4 + 255 + 2 + 1 + 92 + 44 + 39 + 4 + 7 + 4 + 2 + 255 + 82 + 36 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-2, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 50 + 7 + 6 + 86 + 3 + 5 + 3 + 6 + 27 + 2 + 5 + 28 + 7 + 4 + 255 + 5 + 45 + 61 + 3 + 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-2, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 50 + 7 + 6 + 86 + 3 + 5 + 3 + 6 + 27 + 2 + 5 + 28 + 7 + 4 + 255 + 5 + 45 + 61 + 3 + 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-2, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 50 + 7 + 6 + 86 + 3 + 5 + 3 + 6 + 27 + 2 + 5 + 28 + 7 + 4 + 255 + 5 + 45 + 61 + 3 + 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-2, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 50 + 7 + 6 + 86 + 3 + 5 + 3 + 6 + 27 + 2 + 5 + 28 + 7 + 4 + 255 + 5 + 45 + 61 + 3 + 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-2, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 50 + 7 + 6 + 86 + 3 + 5 + 3 + 6 + 27 + 2 + 5 + 28 + 7 + 4 + 255 + 5 + 45 + 61 + 3 + 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-3, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 54 + 82 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-3, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 54 + 82 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-3, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 54 + 82 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-3, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 54 + 82 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-3, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 54 + 82 + 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-4, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 2 + 8 + 255 + 41 + 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-4, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 2 + 8 + 255 + 41 + 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-4, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 2 + 8 + 255 + 41 + 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-4, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 2 + 8 + 255 + 41 + 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-4, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 2 + 8 + 255 + 41 + 255 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-5, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 12 + 148 + 92 + 154 + 4 + 9 + 25 + 13 + 34 + 57 + 8 + 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-5, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 12 + 148 + 92 + 154 + 4 + 9 + 25 + 13 + 34 + 57 + 8 + 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-5, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 12 + 148 + 92 + 154 + 4 + 9 + 25 + 13 + 34 + 57 + 8 + 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-5, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 12 + 148 + 92 + 154 + 4 + 9 + 25 + 13 + 34 + 57 + 8 + 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-enumeration-5, + which is derived by restriction of built-in type unsignedByte + by facet enumeration with values of: + 12 + 148 + 92 + 154 + 4 + 9 + 25 + 13 + 34 + 57 + 8 + 49 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-unsignedByte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-whiteSpace-1, + which is derived by restriction of built-in type unsignedByte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-unsignedByte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-whiteSpace-1, + which is derived by restriction of built-in type unsignedByte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-unsignedByte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-whiteSpace-1, + which is derived by restriction of built-in type unsignedByte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-unsignedByte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-whiteSpace-1, + which is derived by restriction of built-in type unsignedByte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedByte-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-unsignedByte-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedByte-whiteSpace-1, + which is derived by restriction of built-in type unsignedByte + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedByte-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedByte-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 822837152 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 822837152 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 822837152 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 822837152 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 822837152 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3431485162 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3431485162 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3431485162 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3431485162 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3431485162 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3962689390 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3962689390 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3962689390 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3962689390 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 3962689390 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet minExclusive with a value of: 4294967294 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 3373743551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 3373743551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 3373743551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 3373743551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 3373743551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 1109662146 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 1109662146 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 1109662146 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 1109662146 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 1109662146 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 730504109 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 730504109 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 730504109 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 730504109 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 730504109 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-minInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet minInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 2172646844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 2172646844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 2172646844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 2172646844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 2172646844 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 368214369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 368214369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 368214369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 368214369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 368214369 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 3717399159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 3717399159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 3717399159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 3717399159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 3717399159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxExclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxExclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-1, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 792788768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 792788768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 792788768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 792788768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-2, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 792788768 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4020115371 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4020115371 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4020115371 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4020115371 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-3, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4020115371 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 1576927029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 1576927029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 1576927029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 1576927029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-4, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 1576927029 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-maxInclusive-5, + which is derived by restriction of built-in type unsignedInt + by facet maxInclusive with a value of: 4294967295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-fractionDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-fractionDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-fractionDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-fractionDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-fractionDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-1, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-2, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-2, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-2, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-2, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-2, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-3, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-3, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-3, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-3, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-3, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-4, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-4, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-4, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-4, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-4, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 7 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-5, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-5, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-5, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-5, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-totalDigits-5, + which is derived by restriction of built-in type unsignedInt + by facet totalDigits with a value of: 10 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-1, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-1, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-1, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-1, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-1, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-2, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-2, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-2, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-2, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-2, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-3, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-3, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-3, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-3, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-3, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-4, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{7} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-4, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{7} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-4, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{7} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-4, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{7} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-4, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{7} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-5, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-5-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-5, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-5-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-5, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-5-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-5, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-pattern-5-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-pattern-5, + which is derived by restriction of built-in type unsignedInt + by facet pattern with a value of: \d{10} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-1, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 688566 + 993 + 356 + 7146546 + 717 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-1, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 688566 + 993 + 356 + 7146546 + 717 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-1, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 688566 + 993 + 356 + 7146546 + 717 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-1, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 688566 + 993 + 356 + 7146546 + 717 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-1, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 688566 + 993 + 356 + 7146546 + 717 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-2, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 18613 + 376647094 + 61 + 93 + 64825 + 6423187 + 94275 + 2355537 + 19232 + 7 + 844 + 84930585 + 2 + 8 + 199069810 + 110305092 + 79 + 684099 + 70798952 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-2, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 18613 + 376647094 + 61 + 93 + 64825 + 6423187 + 94275 + 2355537 + 19232 + 7 + 844 + 84930585 + 2 + 8 + 199069810 + 110305092 + 79 + 684099 + 70798952 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-2, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 18613 + 376647094 + 61 + 93 + 64825 + 6423187 + 94275 + 2355537 + 19232 + 7 + 844 + 84930585 + 2 + 8 + 199069810 + 110305092 + 79 + 684099 + 70798952 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-2, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 18613 + 376647094 + 61 + 93 + 64825 + 6423187 + 94275 + 2355537 + 19232 + 7 + 844 + 84930585 + 2 + 8 + 199069810 + 110305092 + 79 + 684099 + 70798952 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-2, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 18613 + 376647094 + 61 + 93 + 64825 + 6423187 + 94275 + 2355537 + 19232 + 7 + 844 + 84930585 + 2 + 8 + 199069810 + 110305092 + 79 + 684099 + 70798952 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-3, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 573231403 + 1686 + 51567634 + 12484815 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-3, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 573231403 + 1686 + 51567634 + 12484815 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-3, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 573231403 + 1686 + 51567634 + 12484815 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-3, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 573231403 + 1686 + 51567634 + 12484815 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-3, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 573231403 + 1686 + 51567634 + 12484815 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-4, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 780 + 3003646 + 784964 + 9256 + 4963383 + 8752 + 10210 + 479478 + 2885 + 560621 + 13469037 + 55546 + 4266 + 82189107 + 122418 + 341263 + 26579605 + 949174085 + 4294967295 + 639932295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-4, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 780 + 3003646 + 784964 + 9256 + 4963383 + 8752 + 10210 + 479478 + 2885 + 560621 + 13469037 + 55546 + 4266 + 82189107 + 122418 + 341263 + 26579605 + 949174085 + 4294967295 + 639932295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-4, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 780 + 3003646 + 784964 + 9256 + 4963383 + 8752 + 10210 + 479478 + 2885 + 560621 + 13469037 + 55546 + 4266 + 82189107 + 122418 + 341263 + 26579605 + 949174085 + 4294967295 + 639932295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-4, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 780 + 3003646 + 784964 + 9256 + 4963383 + 8752 + 10210 + 479478 + 2885 + 560621 + 13469037 + 55546 + 4266 + 82189107 + 122418 + 341263 + 26579605 + 949174085 + 4294967295 + 639932295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-4, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 780 + 3003646 + 784964 + 9256 + 4963383 + 8752 + 10210 + 479478 + 2885 + 560621 + 13469037 + 55546 + 4266 + 82189107 + 122418 + 341263 + 26579605 + 949174085 + 4294967295 + 639932295 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-5, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 447 + 72692 + 461 + 79130 + 25 + 66735 + 1 + 6 + 30299054 + 50 + 3451025559 + 499424 + 836415 + 532108 + 3 + 6279632 + 2017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-5, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 447 + 72692 + 461 + 79130 + 25 + 66735 + 1 + 6 + 30299054 + 50 + 3451025559 + 499424 + 836415 + 532108 + 3 + 6279632 + 2017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-5, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 447 + 72692 + 461 + 79130 + 25 + 66735 + 1 + 6 + 30299054 + 50 + 3451025559 + 499424 + 836415 + 532108 + 3 + 6279632 + 2017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-5, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 447 + 72692 + 461 + 79130 + 25 + 66735 + 1 + 6 + 30299054 + 50 + 3451025559 + 499424 + 836415 + 532108 + 3 + 6279632 + 2017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-enumeration-5, + which is derived by restriction of built-in type unsignedInt + by facet enumeration with values of: + 447 + 72692 + 461 + 79130 + 25 + 66735 + 1 + 6 + 30299054 + 50 + 3451025559 + 499424 + 836415 + 532108 + 3 + 6279632 + 2017 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-unsignedInt-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-whiteSpace-1, + which is derived by restriction of built-in type unsignedInt + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-unsignedInt-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-whiteSpace-1, + which is derived by restriction of built-in type unsignedInt + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-unsignedInt-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-whiteSpace-1, + which is derived by restriction of built-in type unsignedInt + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-unsignedInt-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-whiteSpace-1, + which is derived by restriction of built-in type unsignedInt + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedInt-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-unsignedInt-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedInt-whiteSpace-1, + which is derived by restriction of built-in type unsignedInt + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedInt-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedInt-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 13571536538171828222 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 13571536538171828222 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 13571536538171828222 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 13571536538171828222 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 13571536538171828222 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 2760131168210040831 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 2760131168210040831 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 2760131168210040831 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 2760131168210040831 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 2760131168210040831 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 10113526442542964734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 10113526442542964734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 10113526442542964734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 10113526442542964734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 10113526442542964734 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet minExclusive with a value of: 18446744073709551614 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 7498254742986928127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 7498254742986928127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 7498254742986928127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 7498254742986928127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 7498254742986928127 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 5724209792177756159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 5724209792177756159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 5724209792177756159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 5724209792177756159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 5724209792177756159 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 8685664025294856191 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 8685664025294856191 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 8685664025294856191 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 8685664025294856191 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 8685664025294856191 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-minInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet minInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 11770898273643186175 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 11770898273643186175 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 11770898273643186175 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 11770898273643186175 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 11770898273643186175 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1649968308314988544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1649968308314988544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1649968308314988544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1649968308314988544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 1649968308314988544 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 7988196200296206336 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 7988196200296206336 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 7988196200296206336 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 7988196200296206336 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 7988196200296206336 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxExclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxExclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-1, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 9314512360061763583 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 9314512360061763583 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 9314512360061763583 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 9314512360061763583 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-2, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 9314512360061763583 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 365994492127698943 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 365994492127698943 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 365994492127698943 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 365994492127698943 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-3, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 365994492127698943 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 13562023860751155199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 13562023860751155199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 13562023860751155199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 13562023860751155199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-4, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 13562023860751155199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-maxInclusive-5, + which is derived by restriction of built-in type unsignedLong + by facet maxInclusive with a value of: 18446744073709551615 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-fractionDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-fractionDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-fractionDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-fractionDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-fractionDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-1, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-2, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-2, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-2, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-2, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-2, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-3, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-3, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-3, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-3, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-3, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 9 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-4, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-4, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-4, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-4, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-4, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 13 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-5, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-5, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-5, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-5, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-totalDigits-5, + which is derived by restriction of built-in type unsignedLong + by facet totalDigits with a value of: 20 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-1, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-1, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-1, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-1, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-1, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-2, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-2, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-2, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-2, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-2, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-3, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-3, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-3, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-3, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-3, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{9} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-4, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-4, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-4, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-4, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-4, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{13} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-5, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-5-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-5, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-5-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-5, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-5-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-5, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-pattern-5-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-pattern-5, + which is derived by restriction of built-in type unsignedLong + by facet pattern with a value of: \d{20} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-1, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 6162335471404 + 18446744073709551615 + 151355469 + 44931211860594 + 5739783120 + 33663833 + 15139662 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-1, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 6162335471404 + 18446744073709551615 + 151355469 + 44931211860594 + 5739783120 + 33663833 + 15139662 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-1, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 6162335471404 + 18446744073709551615 + 151355469 + 44931211860594 + 5739783120 + 33663833 + 15139662 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-1, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 6162335471404 + 18446744073709551615 + 151355469 + 44931211860594 + 5739783120 + 33663833 + 15139662 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-1, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 6162335471404 + 18446744073709551615 + 151355469 + 44931211860594 + 5739783120 + 33663833 + 15139662 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-2, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 86462551480200844 + 54121313444 + 2872137601831181 + 67718045802 + 3975071801896724 + 608237240717 + 113 + 1457 + 4232004769830275403 + 284901959018 + 53464 + 7227697347959887164 + 8993367631 + 427 + 37350818913352 + 16994405164539849728 + 373826189839734368 + 402653 + 341714167483100128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-2, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 86462551480200844 + 54121313444 + 2872137601831181 + 67718045802 + 3975071801896724 + 608237240717 + 113 + 1457 + 4232004769830275403 + 284901959018 + 53464 + 7227697347959887164 + 8993367631 + 427 + 37350818913352 + 16994405164539849728 + 373826189839734368 + 402653 + 341714167483100128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-2, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 86462551480200844 + 54121313444 + 2872137601831181 + 67718045802 + 3975071801896724 + 608237240717 + 113 + 1457 + 4232004769830275403 + 284901959018 + 53464 + 7227697347959887164 + 8993367631 + 427 + 37350818913352 + 16994405164539849728 + 373826189839734368 + 402653 + 341714167483100128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-2, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 86462551480200844 + 54121313444 + 2872137601831181 + 67718045802 + 3975071801896724 + 608237240717 + 113 + 1457 + 4232004769830275403 + 284901959018 + 53464 + 7227697347959887164 + 8993367631 + 427 + 37350818913352 + 16994405164539849728 + 373826189839734368 + 402653 + 341714167483100128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-2, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 86462551480200844 + 54121313444 + 2872137601831181 + 67718045802 + 3975071801896724 + 608237240717 + 113 + 1457 + 4232004769830275403 + 284901959018 + 53464 + 7227697347959887164 + 8993367631 + 427 + 37350818913352 + 16994405164539849728 + 373826189839734368 + 402653 + 341714167483100128 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-3, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 451207306 + 3041060849575 + 1409686715902614 + 3 + 232177455323 + 1805 + 651754238 + 28648903479 + 5209145470664 + 80716444050 + 89523873647 + 33412637088198 + 861788979979169478 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-3, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 451207306 + 3041060849575 + 1409686715902614 + 3 + 232177455323 + 1805 + 651754238 + 28648903479 + 5209145470664 + 80716444050 + 89523873647 + 33412637088198 + 861788979979169478 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-3, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 451207306 + 3041060849575 + 1409686715902614 + 3 + 232177455323 + 1805 + 651754238 + 28648903479 + 5209145470664 + 80716444050 + 89523873647 + 33412637088198 + 861788979979169478 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-3, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 451207306 + 3041060849575 + 1409686715902614 + 3 + 232177455323 + 1805 + 651754238 + 28648903479 + 5209145470664 + 80716444050 + 89523873647 + 33412637088198 + 861788979979169478 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-3, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 451207306 + 3041060849575 + 1409686715902614 + 3 + 232177455323 + 1805 + 651754238 + 28648903479 + 5209145470664 + 80716444050 + 89523873647 + 33412637088198 + 861788979979169478 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-4, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 18446744073709551615 + 5253448524324272 + 8383532028456 + 677 + 6765056 + 5755503966743055199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-4, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 18446744073709551615 + 5253448524324272 + 8383532028456 + 677 + 6765056 + 5755503966743055199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-4, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 18446744073709551615 + 5253448524324272 + 8383532028456 + 677 + 6765056 + 5755503966743055199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-4, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 18446744073709551615 + 5253448524324272 + 8383532028456 + 677 + 6765056 + 5755503966743055199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-4, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 18446744073709551615 + 5253448524324272 + 8383532028456 + 677 + 6765056 + 5755503966743055199 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-5, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 966581 + 70580628209925 + 78916 + 5368373711 + 7629261063 + 7 + 155080341276547573 + 499242537830 + 5586958 + 709737 + 7500 + 68685466013338536 + 457472273262893 + 109392494221 + 5857155821331105904 + 84697741549 + 43 + 690901803 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-5, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 966581 + 70580628209925 + 78916 + 5368373711 + 7629261063 + 7 + 155080341276547573 + 499242537830 + 5586958 + 709737 + 7500 + 68685466013338536 + 457472273262893 + 109392494221 + 5857155821331105904 + 84697741549 + 43 + 690901803 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-5, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 966581 + 70580628209925 + 78916 + 5368373711 + 7629261063 + 7 + 155080341276547573 + 499242537830 + 5586958 + 709737 + 7500 + 68685466013338536 + 457472273262893 + 109392494221 + 5857155821331105904 + 84697741549 + 43 + 690901803 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-5, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 966581 + 70580628209925 + 78916 + 5368373711 + 7629261063 + 7 + 155080341276547573 + 499242537830 + 5586958 + 709737 + 7500 + 68685466013338536 + 457472273262893 + 109392494221 + 5857155821331105904 + 84697741549 + 43 + 690901803 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-enumeration-5, + which is derived by restriction of built-in type unsignedLong + by facet enumeration with values of: + 966581 + 70580628209925 + 78916 + 5368373711 + 7629261063 + 7 + 155080341276547573 + 499242537830 + 5586958 + 709737 + 7500 + 68685466013338536 + 457472273262893 + 109392494221 + 5857155821331105904 + 84697741549 + 43 + 690901803 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-unsignedLong-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-whiteSpace-1, + which is derived by restriction of built-in type unsignedLong + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-unsignedLong-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-whiteSpace-1, + which is derived by restriction of built-in type unsignedLong + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-unsignedLong-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-whiteSpace-1, + which is derived by restriction of built-in type unsignedLong + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-unsignedLong-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-whiteSpace-1, + which is derived by restriction of built-in type unsignedLong + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedLong-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-unsignedLong-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedLong-whiteSpace-1, + which is derived by restriction of built-in type unsignedLong + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedLong-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedLong-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 63490 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 63490 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 63490 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 63490 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 63490 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 56988 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 56988 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 56988 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 56988 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 56988 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 48134 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 48134 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 48134 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 48134 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 48134 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet minExclusive with a value of: 65534 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 26226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 26226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 26226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 26226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 26226 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 4373 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 4373 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 4373 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 4373 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 4373 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 20551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 20551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 20551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 20551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 20551 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-minInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-minInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-minInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet minInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-minInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-minInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 59356 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 59356 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 59356 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 59356 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 59356 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 45523 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 45523 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 45523 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 45523 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 45523 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 40432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 40432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 40432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 40432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 40432 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxExclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxExclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxExclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxExclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxExclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxExclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-1, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 26348 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 26348 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 26348 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 26348 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-2, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 26348 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 37089 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 37089 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 37089 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 37089 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-3, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 37089 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 59960 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 59960 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 59960 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 59960 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-4, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 59960 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-5-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-5-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-5-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-maxInclusive-5-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-maxInclusive-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-maxInclusive-5, + which is derived by restriction of built-in type unsignedShort + by facet maxInclusive with a value of: 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-maxInclusive-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-maxInclusive-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-fractionDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-fractionDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-fractionDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-fractionDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-fractionDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-fractionDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-fractionDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-fractionDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-fractionDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-fractionDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-fractionDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-fractionDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-fractionDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-fractionDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-fractionDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet fractionDigits with a value of: 0 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-fractionDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-fractionDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-1, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 1 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-2, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-2, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-2, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-2, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-2, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 2 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-3, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-3, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-3, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-3, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-3, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 3 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-4, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-4, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-4, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-4, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-4, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 4 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-5, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-5-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-5, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-5-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-5, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-5-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-5, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-totalDigits-5-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-totalDigits-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-totalDigits-5, + which is derived by restriction of built-in type unsignedShort + by facet totalDigits with a value of: 5 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-totalDigits-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-totalDigits-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-1, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-1, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-1, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-1, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-1, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{1} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-2, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-2, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-2, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-2, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-2, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{2} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-3, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-3, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-3, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-3, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-3, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{3} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-4, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-4, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-4, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-4, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-4, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{4} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-5, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-5-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-5, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-5-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-5, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-5-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-5, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-pattern-5-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-pattern-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-pattern-5, + which is derived by restriction of built-in type unsignedShort + by facet pattern with a value of: \d{5} + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-pattern-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-pattern-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-1, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 18073 + 4285 + 18 + 7619 + 83 + 65535 + 452 + 3 + 299 + 62289 + 996 + 1 + 26 + 9417 + 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-1, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 18073 + 4285 + 18 + 7619 + 83 + 65535 + 452 + 3 + 299 + 62289 + 996 + 1 + 26 + 9417 + 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-1, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 18073 + 4285 + 18 + 7619 + 83 + 65535 + 452 + 3 + 299 + 62289 + 996 + 1 + 26 + 9417 + 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-1, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 18073 + 4285 + 18 + 7619 + 83 + 65535 + 452 + 3 + 299 + 62289 + 996 + 1 + 26 + 9417 + 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-1, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 18073 + 4285 + 18 + 7619 + 83 + 65535 + 452 + 3 + 299 + 62289 + 996 + 1 + 26 + 9417 + 32 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-1-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-2-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-2, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 238 + 7 + 152 + 6901 + 29 + 579 + 6720 + 2234 + 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-2-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-2-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-2, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 238 + 7 + 152 + 6901 + 29 + 579 + 6720 + 2234 + 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-2-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-2-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-2, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 238 + 7 + 152 + 6901 + 29 + 579 + 6720 + 2234 + 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-2-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-2-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-2, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 238 + 7 + 152 + 6901 + 29 + 579 + 6720 + 2234 + 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-2-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-2-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-2.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-2, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 238 + 7 + 152 + 6901 + 29 + 579 + 6720 + 2234 + 6 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-2.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-2-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-3-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-3, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 6 + 449 + 4 + 619 + 6 + 3 + 399 + 26 + 36161 + 542 + 572 + 41074 + 43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-3-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-3-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-3, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 6 + 449 + 4 + 619 + 6 + 3 + 399 + 26 + 36161 + 542 + 572 + 41074 + 43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-3-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-3-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-3, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 6 + 449 + 4 + 619 + 6 + 3 + 399 + 26 + 36161 + 542 + 572 + 41074 + 43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-3-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-3-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-3, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 6 + 449 + 4 + 619 + 6 + 3 + 399 + 26 + 36161 + 542 + 572 + 41074 + 43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-3-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-3-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-3.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-3, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 6 + 449 + 4 + 619 + 6 + 3 + 399 + 26 + 36161 + 542 + 572 + 41074 + 43 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-3.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-3-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-4-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-4, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 55 + 23776 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-4-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-4-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-4, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 55 + 23776 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-4-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-4-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-4, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 55 + 23776 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-4-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-4-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-4, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 55 + 23776 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-4-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-4-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-4.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-4, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 55 + 23776 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-4.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-4-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-5-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-5, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 8 + 26 + 150 + 65535 + 6482 + 74 + 255 + 24342 + 81 + 8 + 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-5-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-5-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-5, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 8 + 26 + 150 + 65535 + 6482 + 74 + 255 + 24342 + 81 + 8 + 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-5-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-5-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-5, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 8 + 26 + 150 + 65535 + 6482 + 74 + 255 + 24342 + 81 + 8 + 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-5-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-5-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-5, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 8 + 26 + 150 + 65535 + 6482 + 74 + 255 + 24342 + 81 + 8 + 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-5-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-enumeration-5-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-enumeration-5.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-enumeration-5, + which is derived by restriction of built-in type unsignedShort + by facet enumeration with values of: + 8 + 26 + 150 + 65535 + 6482 + 74 + 255 + 24342 + 81 + 8 + 65535 + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-enumeration-5.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-enumeration-5-5.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-whiteSpace-1-1" origin="NIST"><description> + File: NISTSchema-unsignedShort-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-whiteSpace-1, + which is derived by restriction of built-in type unsignedShort + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-whiteSpace-1-1.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-whiteSpace-1-2" origin="NIST"><description> + File: NISTSchema-unsignedShort-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-whiteSpace-1, + which is derived by restriction of built-in type unsignedShort + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-whiteSpace-1-2.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-whiteSpace-1-3" origin="NIST"><description> + File: NISTSchema-unsignedShort-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-whiteSpace-1, + which is derived by restriction of built-in type unsignedShort + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-whiteSpace-1-3.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-whiteSpace-1-4" origin="NIST"><description> + File: NISTSchema-unsignedShort-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-whiteSpace-1, + which is derived by restriction of built-in type unsignedShort + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-whiteSpace-1-4.xml" role="instance" validity="1"/></files></test><test id="NISTXML-unsignedShort-whiteSpace-1-5" origin="NIST"><description> + File: NISTSchema-unsignedShort-whiteSpace-1.xsd + This schema specifies a datatype, NISTSchema-unsignedShort-whiteSpace-1, + which is derived by restriction of built-in type unsignedShort + by facet whiteSpace with a value of: collapse + +</description><files><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTSchema-unsignedShort-whiteSpace-1.xsd" role="schema" validity="1"/><file tsDir="nisttest" folder="NISTTestsAll" fileName="NISTXML-unsignedShort-whiteSpace-1-5.xml" role="instance" validity="1"/></files></test></tests> diff --git a/xstc/sun-test-def.xml b/xstc/sun-test-def.xml new file mode 100755 index 0000000..455fe60 --- /dev/null +++ b/xstc/sun-test-def.xml @@ -0,0 +1,1203 @@ +<?xml version="1.0"?> +<tests> + <test id="idc001.nogen.n00" origin="Microsoft"> + <description>ID Constranints. Very naive test of identity constraint</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc001.nogen.v00" origin="Microsoft"> + <description>ID Constranints. Very naive test of identity constraint</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc001.nogen.v01" origin="Microsoft"> + <description>ID Constranints. Very naive test of identity constraint</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc001.nogen.v01.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc002.e" origin="Microsoft"> + <description>ID Constranints. Reference to an undeclared key</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc002.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idc002b.e" origin="Microsoft"> + <description>ID Constranints. Reference to an undeclared key in an undeclared namespace</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc002b.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idc003.e" origin="Microsoft"> + <description>ID Constranints. Reference to non-key constraint.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc003.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idc004.nogen.n00" origin="Microsoft"> + <description>ID Constranints.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc004.nogen.n01" origin="Microsoft"> + <description>ID Constranints.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc004.nogen.n02" origin="Microsoft"> + <description>ID Constranints.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc004.nogen.n03" origin="Microsoft"> + <description>ID Constranints.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc004.nogen.v00" origin="Microsoft"> + <description>ID Constranints.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004.nogen.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc004a.e" origin="Microsoft"> + <description>ID Constraints. Key/keyref field size mismatch.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc004a.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="idc005.nogen.n00" origin="Microsoft"> + <description>ID Constraints. very naive test of identity constraint.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc005.nogen.n01" origin="Microsoft"> + <description>ID Constraints. very naive test of identity constraint.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc005.nogen.v00" origin="Microsoft"> + <description>ID Constraints. Very naive test of identity constraint.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc005.nogen.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="idc006.nogen.n00" origin="Microsoft"> + <description>ID Constaints. XPath engine test: './/a/*/b' and use of '.' for both selector and field.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc006.nogen.n01" origin="Microsoft"> + <description>ID Constraints. XPath engine test: './/a/*/b' and use of '.' for both selector and field.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="idc006.nogen.v00" origin="Microsoft"> + <description>ID Constraints. XPath engine test: './/a/*/b' and use of '.' for both selector and field.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="idc006.nogen.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd001.n00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n01" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n02" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n03" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n04" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n05" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n05.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n06" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n06.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.n07" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.n07.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd001.v00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd001.v00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd001.v01" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.v01.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd001.v02" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.v02.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd001.v03" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - unusual minOccurs/maxOccurs (3 and 7 respectively) - complexType with simpleContent, and restriction. - simpleType within restriction.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd001.v03.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd002.n00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - use of elementFormDefault and form attribute. - implicit use of 'ur-type' as the content model of element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd002.n01" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - use of elementFormDefault and form attribute. - implicit use of 'ur-type' as the content model of element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd002.n02" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - use of elementFormDefault and form attribute. - implicit use of 'ur-type' as the content model of element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd002.v00" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - use of elementFormDefault and form attribute. - implicit use of 'ur-type' as the content model of element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd002.v01" origin="Microsoft"> + <description>- use of elementFormDefault='unqualified' - use of elementFormDefault and form attribute. - implicit use of 'ur-type' as the content model of element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd002.v01.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd003-1.e" origin="Microsoft"> + <description>Element redefinition. Unable to redefine element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003-1.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd003-2.e" origin="Microsoft"> + <description>Element redefinition. Unable to redefine element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003-2.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd003a.v00" origin="Microsoft"> + <description>Element redefinition. Test without redefinition.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003a.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003a.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd003b.n00" origin="Microsoft"> + <description>Element redefinition. Test with redefinition with self-reference. @add in xsd003b.n00.xml must be number</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd003b.n01" origin="Microsoft"> + <description>Element redefinition. Test with redefinition with self-reference. @gAtt is redefined to allow yes/no only</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd003b.v00" origin="Microsoft"> + <description>Element redefinition. Test with redefinition with self-reference.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd003b.v01" origin="Microsoft"> + <description>Element redefinition. Test with redefinition with self-reference.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd003b.v01.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd004.n00" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n01" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n02" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n03" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n04" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n05" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n05.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n06" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n06.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n07" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n07.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n08" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n08.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n09" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n09.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n10" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n10.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n11" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n11.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.n12" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.n12.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd004.v00" origin="Microsoft"> + <description>Use of three different type of any element with different @namespace.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd004.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd005.n00" origin="Microsoft"> + <description>Complex type derivation. Missing content model.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n01" origin="Microsoft"> + <description>Complex type derivation. Undeclared type name.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n02" origin="Microsoft"> + <description>Complex type derivation. More than one 'b'.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n03" origin="Microsoft"> + <description>Complex type derivation. 'b' is prohibited for type rst.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n04" origin="Microsoft"> + <description>Complex type derivation. Missing xsi:type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n05" origin="Microsoft"> + <description>Complex type derivation. Don't be fooled! xsi:type is a QName.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n05.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.n06" origin="Microsoft"> + <description>Complex type derivation. 'd' and 'e' are missing.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.n06.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd005.v00" origin="Microsoft"> + <description>Complex type derivation.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd005.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd006.n00" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n00" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n01" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n02" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n03" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n04" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n05" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n05.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n06" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n06.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n07" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n07.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n08" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n08.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n09" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n09.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.n10" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.n10.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd006.v00" origin="Microsoft"> + <description>minOccurs/maxOccurs. Various combinations.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd006.v00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd008.n00" origin="Microsoft"> + <description>Abstract element and element substitution group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd008.n01" origin="Microsoft"> + <description>Abstract element and element substitution group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd008.n02" origin="Microsoft"> + <description>Abstract element and element substitution group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd008.v00" origin="Microsoft"> + <description>Abstract element and element substitution group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd008.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd011.n00" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd011.n01" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd011.n02" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd011.n03" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd011.n04" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd011.v00" origin="Microsoft"> + <description>Nillable.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd011.v00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd012.n00" origin="Microsoft"> + <description>Mixed content model.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd012.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd012.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd012.v00" origin="Microsoft"> + <description>Mixed content model.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd012.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd012.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd013.e" origin="Microsoft"> + <description>Reference to undeclared element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd013.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd014.e" origin="Microsoft"> + <description>Reference to undeclared element.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd014.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd015.e" origin="Microsoft"> + <description>Reference to undeclared type (it may be simple or complex).</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd015.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd016.e" origin="Microsoft"> + <description>Reference to undeclared type (it may be simple or complex).</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd016.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd017.e" origin="Microsoft"> + <description>Reference to undeclared complex type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd017.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd018.e" origin="Microsoft"> + <description>Reference to undeclared complex type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd018.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd019.e" origin="Microsoft"> + <description>Reference to undeclared simple type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd019.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd020.e" origin="Microsoft"> + <description>Reference to undeclared simple type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd020.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd020-2.e" origin="Microsoft"> + <description>Reference to undeclared attribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd020-2.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd020-3.e" origin="Microsoft"> + <description>Reference to undeclared model group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd020-3.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd020-4.e" origin="Microsoft"> + <description>Reference to undeclared attribute group.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd020-4.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsd021.n00" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n01" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n01.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n02" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n02.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n03" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n03.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n04" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n04.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n05" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n05.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n06" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n06.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n07" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n07.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n08" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n08.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n09" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n09.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n10" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n10.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.n11" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.n11.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd021.v00" origin="Microsoft"> + <description>anyOtherAttribute.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd021.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd022.n00" origin="Microsoft"> + <description>Various forms of forward reference to the simple type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd022.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd022.n00.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsd022.v00" origin="Microsoft"> + <description>Simple type. Various forms of forward reference to the simple type.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd022.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd022.v00.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsd023.e" origin="Microsoft"> + <description>Simple type. Recursive definition.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsd023.e.xsd" role="schema" validity="0"/> + </files> + </test> + <test id="xsiType1.v1" origin="Microsoft"> + <description></description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType1.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsiType1.n1" origin="Microsoft"> + <description></description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType1.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-1.v1" origin="Microsoft"> + <description>Test block attribute (1) - use block='extension' at the B type. This should exclude all types that uses extension.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsiType-block-1.n1" origin="Microsoft"> + <description>Test block attribute (1) - use block='extension' at the B type. This should exclude all types that uses extension.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-1.n2" origin="Microsoft"> + <description>Test block attribute (1) - use block='extension' at the B type. This should exclude all types that uses extension.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.n2.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-1.n3" origin="Microsoft"> + <description>Test block attribute (1) - use block='extension' at the B type. This should exclude all types that uses extension.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.n3.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-1.n4" origin="Microsoft"> + <description>Test block attribute (1) - use block='extension' at the B type. This should exclude all types that uses extension.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-1.n4.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-2.v1" origin="Microsoft"> + <description>Test block attribute (2) - use block='extension' as the blockDefault attribute. This should achieve the same result as the previous test case.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsiType-block-2.n1" origin="Microsoft"> + <description>Test block attribute (2) - use block='extension' as the blockDefault attribute. This should achieve the same result as the previous test case.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-2.n2" origin="Microsoft"> + <description>Test block attribute (2) - use block='extension' as the blockDefault attribute. This should achieve the same result as the previous test case.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.n2.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-2.n3" origin="Microsoft"> + <description>Test block attribute (2) - use block='extension' as the blockDefault attribute. This should achieve the same result as the previous test case.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.n3.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-2.n4" origin="Microsoft"> + <description>Test block attribute (2) - use block='extension' as the blockDefault attribute. This should achieve the same result as the previous test case.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-2.n4.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-3.v1" origin="Microsoft"> + <description>Test block attribute (3) - use block='extension' for the child2 element. child2 has no block constraint. - see if @block for element is working as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsiType-block-3.n1" origin="Microsoft"> + <description>Test block attribute (3) - use block='extension' for the child2 element. child2 has no block constraint. - see if @block for element is working as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-3.n2" origin="Microsoft"> + <description>Test block attribute (3) - use block='extension' for the child2 element. child2 has no block constraint. - see if @block for element is working as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.n2.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-3.n3" origin="Microsoft"> + <description>Test block attribute (3) - use block='extension' for the child2 element. child2 has no block constraint. - see if @block for element is working as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.n3.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-3.n4" origin="Microsoft"> + <description>Test block attribute (3) - use block='extension' for the child2 element. child2 has no block constraint. - see if @block for element is working as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-3.n4.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-4.v1" origin="Microsoft"> + <description>Test block attribute (4) - use block='extension' for the child2 element. child2 has no block constraint. - use block='restriction' for the Dr type. - see if @block for element and @block for types interacts as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="xsiType-block-4.n1" origin="Microsoft"> + <description>Test block attribute (4) - use block='extension' for the child2 element. child2 has no block constraint. - use block='restriction' for the Dr type. - see if @block for element and @block for types interacts as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-4.n2" origin="Microsoft"> + <description>Test block attribute (4) - use block='extension' for the child2 element. child2 has no block constraint. - use block='restriction' for the Dr type. - see if @block for element and @block for types interacts as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.n2.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-4.n3" origin="Microsoft"> + <description>Test block attribute (4) - use block='extension' for the child2 element. child2 has no block constraint. - use block='restriction' for the Dr type. - see if @block for element and @block for types interacts as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.n3.xml" role="instance" validity="0"/> + </files> + </test> + <test id="xsiType-block-4.n4" origin="Microsoft"> + <description>Test block attribute (4) - use block='extension' for the child2 element. child2 has no block constraint. - use block='restriction' for the Dr type. - see if @block for element and @block for types interacts as expected.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="xsiType-block-4.n4.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.v1" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.v1.xml" role="instance" validity="1"/> + </files> + </test> + <test id="type-and-subst-1.v2" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.v2.xml" role="instance" validity="1"/> + </files> + </test> + <test id="type-and-subst-1.n1" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n1.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n2" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n2.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n3" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n3.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n4" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n4.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n5" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n5.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n6" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n6.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n7" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n7.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n8" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n8.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n9" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n9.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n10" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n10.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n11" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n11.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n12" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n12.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n13" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n13.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n14" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n14.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n15" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n15.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n16" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n16.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n17" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n17.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n18" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n18.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n19" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n19.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n20" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n20.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n21" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n21.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n22" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n22.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n23" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n23.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n24" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n24.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n25" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n25.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n26" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n26.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n27" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n27.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n28" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n28.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n29" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n29.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n30" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n30.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n31" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n31.xml" role="instance" validity="0"/> + </files> + </test> + <test id="type-and-subst-1.n32" origin="Microsoft"> + <description>No block attribute is specified. Just test that the substitution group and the type hierarchy is OK. The substitution group hierarchy mirrors the complex type hierarchy.</description> + <files> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.xsd" role="schema" validity="1"/> + <file tsDir="suntest" folder="SunTestsAll" fileName="type-and-subst-1.n32.xml" role="instance" validity="0"/> + </files> + </test> +</tests> diff --git a/xstc/xstc-to-python.xsl b/xstc/xstc-to-python.xsl new file mode 100644 index 0000000..31fe038 --- /dev/null +++ b/xstc/xstc-to-python.xsl @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + <xsl:output method="text"/> + <!-- Main template. --> + <xsl:template match="/"> + <xsl:text>#!/usr/bin/python -u +# +# This file is generated from the W3C test suite description file. +# + +from xstc import MSTestRunner, MSTestCase + +r = MSTestRunner() + +</xsl:text> + <xsl:apply-templates select="tests/test"/> + <xsl:text> + +r.run() + +################## +# Display results. +# + +</xsl:text> + + </xsl:template> + + <!-- Test template. --> + + <xsl:template match="file"> + <xsl:text>"</xsl:text> + <xsl:value-of select="@folder"/><xsl:text>", "</xsl:text> + <xsl:value-of select="@fileName"/><xsl:text>", </xsl:text> + <xsl:value-of select="@validity"/> + </xsl:template> + + <xsl:template match="test"> + <xsl:text>r.addTest(MSTestCase("</xsl:text> + <xsl:value-of select="@id"/> + <xsl:text>", """</xsl:text> + <xsl:value-of select="description/text()"/> + <xsl:text>""", "</xsl:text> + <xsl:value-of select="files/file[@role='schema']/@tsDir"/> + <xsl:text>", </xsl:text> + <xsl:choose> + <xsl:when test="count(files/file[@role='schema']) = 1"> + <xsl:apply-templates select="files/file[@role='schema']"/> + </xsl:when> + <xsl:otherwise> + <xsl:text>"", "", 0</xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:choose> + <xsl:when test="count(files/file[@role='instance']) = 1"> + <xsl:text>, 1, </xsl:text> + <xsl:apply-templates select="files/file[@role='instance']"/> + </xsl:when> + <xsl:otherwise>, 0, "", "", 0</xsl:otherwise> + </xsl:choose> + <xsl:text>)) +</xsl:text> + </xsl:template> + +</xsl:stylesheet> diff --git a/xstc/xstc.py b/xstc/xstc.py new file mode 100755 index 0000000..024ba0e --- /dev/null +++ b/xstc/xstc.py @@ -0,0 +1,550 @@ +#!/usr/bin/env python
+
+#
+# This is the MS subset of the W3C test suite for XML Schemas.
+# This file is generated from the MS W3c test suite description file.
+#
+
+import sys, os
+import exceptions, optparse
+import libxml2
+
+opa = optparse.OptionParser()
+
+opa.add_option("-b", "--base", action="store", type="string", dest="baseDir",
+ default="",
+ help="""The base directory; i.e. the parent folder of the
+ "nisttest", "suntest" and "msxsdtest" directories.""")
+
+opa.add_option("-o", "--out", action="store", type="string", dest="logFile",
+ default="test.log",
+ help="The filepath of the log file to be created")
+
+opa.add_option("--no-log", action="store_true", dest="disableLog",
+ default=False,
+ help="The filepath of the log file to be created")
+
+opa.add_option("--no-test-out", action="store_true", dest="disableTestStdOut",
+ default=False,
+ help="The filepath of the log file to be created")
+
+opa.add_option("-s", "--silent", action="store_true", dest="silent", default=False,
+ help="Disables display of all tests")
+
+opa.add_option("-v", "--verbose", action="store_true", dest="verbose",
+ default=False,
+ help="Displays all tests (only if --silent is not set)")
+
+opa.add_option("-x", "--max", type="int", dest="maxTestCount",
+ default="-1",
+ help="The maximum number of tests to be run")
+
+opa.add_option("-t", "--test", type="string", dest="singleTest",
+ default=None,
+ help="Runs the specified test only")
+
+opa.add_option("--rieo", "--report-internal-errors-only", action="store_true",
+ dest="reportInternalErrOnly", default=False,
+ help="Display erroneous tests of type 'internal' only")
+
+opa.add_option("--rmleo", "--report-mem-leak-errors-only", action="store_true",
+ dest="reportMemLeakErrOnly", default=False,
+ help="Display erroneous tests of type 'memory leak' only")
+
+opa.add_option("-c", "--combines", type="string", dest="combines",
+ default=None,
+ help="Combines to be run (all if omitted)")
+
+opa.add_option("--rc", "--report-combines", action="store_true",
+ dest="reportCombines", default=False,
+ help="Display combine reports")
+
+opa.add_option("--rec", "--report-err-combines", action="store_true",
+ dest="reportErrCombines", default=False,
+ help="Display erroneous combine reports only")
+
+opa.add_option("--debug", action="store_true",
+ dest="debugEnabled", default=False,
+ help="Displays debug messages")
+
+opa.add_option("--info", action="store_true",
+ dest="info", default=False,
+ help="Displays info on the suite only. Does not run any test.")
+
+(options, args) = opa.parse_args()
+
+if options.combines is not None:
+ options.combines = options.combines.split()
+
+################################################
+# The vars below are not intended to be changed.
+#
+
+msgSchemaNotValidButShould = "The schema should be valid."
+msgSchemaValidButShouldNot = "The schema should be invalid."
+msgInstanceNotValidButShould = "The instance should be valid."
+msgInstanceValidButShouldNot = "The instance should be invalid."
+testFolderNIST = "nisttest"
+testFolderMS = "msxsdtest"
+testFolderSUN = "suntest"
+
+###################
+# Helper functions.
+#
+
+def handleError(test, msg):
+ test.addLibLog("'%s' LIB: %s" % (test.name, msg))
+ if msg.find("Unimplemented") > -1:
+ test.failUnimplemented()
+ elif msg.find("Internal") > -1:
+ test.failInternal()
+
+
+##################
+# Test case class.
+#
+
+class MSTestCase:
+
+ def __init__(self, name, descr, tFolder, sFolder, sFile, sVal, iExists, iFolder, iFile, iVal):
+ global testFolderNIST, testFolderSUN, testFolderMS
+ #
+ # Init.
+ #
+ self.name = name
+ self.descr = descr
+ self.test_Folder = tFolder
+ self.schema_Folder = sFolder
+ self.schema_File = sFile
+ self.schema_Val = sVal
+ self.instance_Exists = iExists
+ self.instance_Folder = iFolder
+ self.instance_File = iFile
+ self.instance_Val = iVal
+ self.failed = False
+ self.log = []
+ self.libLog = []
+ self.phase = ""
+ self.initialMemUsed = 0
+ self.memLeak = 0
+ self.excepted = False
+ self.bad = False
+ self.unimplemented = False
+ self.internalErr = False
+ #
+ # Compute combine name of this test.
+ #
+ if self.test_Folder == testFolderMS or self.test_Folder == testFolderSUN:
+ #
+ # Use the last given directory for the combine name.
+ #
+ dirs = self.schema_Folder.split("/")
+ self.combineName = dirs[len(dirs) -1]
+ if self.test_Folder == testFolderMS:
+ if self.combineName == "group":
+ self.schema_Folder = "Group"
+ self.instance_Folder = "Group"
+ elif self.test_Folder == testFolderNIST:
+ #
+ # NIST files are named in the following form:
+ # "NISTSchema-short-pattern-1.xsd"
+ #
+ tokens = self.schema_File.split("-")
+ self.combineName = tokens[1]
+ else:
+ self.combineName = "unkown"
+ raise Exception("Could not compute the combine name of a test.")
+ #
+ # Init the log.
+ #
+ self.log.append("'%s' descr: %s\n" % (self.name, self.descr))
+ self.log.append("'%s' exp schema valid: %d\n" % (self.name, self.schema_Val))
+ if (self.instance_Exists):
+ self.log.append("'%s' exp instance valid: %d\n" % (self.name, self.instance_Val))
+
+ def addLibLog(self, msg):
+ """This one is intended to be used by the error handler
+ function"""
+ self.libLog.append(msg)
+
+ def fail(self, msg):
+ self.failed = True
+ self.log.append("'%s' ( FAILED: %s\n" % (self.name, msg))
+
+ def failInternal(self):
+ self.failed = True
+ self.internalErr = True
+ self.log.append("'%s' * INTERNAL\n" % self.name)
+
+ def failUnimplemented(self):
+ self.failed = True
+ self.unimplemented = True
+ self.log.append("'%s' ? UNIMPLEMENTED\n" % self.name)
+
+ def failCritical(self, msg):
+ self.failed = True
+ self.bad = True
+ self.log.append("'%s' ! BAD: %s\n" % (self.name, msg))
+
+ def failExcept(self, e):
+ self.failed = True
+ self.excepted = True
+ self.log.append("'%s' # EXCEPTION: %s\n" % (self.name, e.__str__()))
+
+ def setUp(self):
+ #
+ # Set up Libxml2.
+ #
+ self.initialMemUsed = libxml2.debugMemory(1)
+ libxml2.initParser()
+ libxml2.lineNumbersDefault(1)
+ libxml2.registerErrorHandler(handleError, self)
+
+ def tearDown(self):
+ libxml2.schemaCleanupTypes()
+ libxml2.cleanupParser()
+ self.memLeak = libxml2.debugMemory(1) - self.initialMemUsed
+
+ def isIOError(self, file, docType):
+ err = None
+ try:
+ err = libxml2.lastError()
+ except:
+ # Suppress exceptions.
+ pass
+ if (err is None):
+ return False
+ if err.domain() == libxml2.XML_FROM_IO:
+ self.failCritical("failed to access the %s resource '%s'\n" % (docType, file))
+
+ def debugMsg(self, msg):
+ global options
+ if options.debugEnabled:
+ sys.stdout.write("'%s' DEBUG: %s\n" % (self.name, msg))
+
+ def finalize(self):
+ """Adds additional info to the log."""
+ #
+ # Add libxml2 messages.
+ #
+ self.log.extend(self.libLog)
+ #
+ # Add memory leaks.
+ #
+ if self.memLeak != 0:
+ self.log.append("%s + memory leak: %d bytes\n" % (self.name, self.memLeak))
+
+ def processSchema(self, filePath):
+ global msgSchemaNotValidButShould, msgSchemaValidButShouldNot
+ schema = None
+
+ #
+ # Parse the schema.
+ #
+ self.debugMsg("loading schema: %s" % filePath)
+ schema_ParserCtxt = libxml2.schemaNewParserCtxt(filePath)
+ try:
+ try:
+ schema = schema_ParserCtxt.schemaParse()
+ except:
+ pass
+ finally:
+ self.debugMsg("after loading schema")
+ del schema_ParserCtxt
+ if schema is None:
+ self.debugMsg("schema is None")
+ self.debugMsg("checking for IO errors...")
+ if self.isIOError(file, "schema"):
+ return None
+ self.debugMsg("checking schema result")
+ if (schema is None and self.schema_Val) or (schema is not None and self.schema_Val == 0):
+ self.debugMsg("schema result is BAD")
+ if (schema == None):
+ self.fail(msgSchemaNotValidButShould)
+ else:
+ self.fail(msgSchemaValidButShouldNot)
+ else:
+ self.debugMsg("schema result is OK")
+ return schema
+
+ def processInstance(self, filePath, schema):
+ global msgInstanceNotValidButShould, msgInstanceValidButShouldNot
+
+ instance = None
+ self.debugMsg("loading instance: %s" % filePath)
+ instance_parserCtxt = libxml2.newParserCtxt()
+ if (instance_parserCtxt is None):
+ # TODO: Is this one necessary, or will an exception
+ # be already raised?
+ raise Exception("Could not create the instance parser context.")
+ try:
+ try:
+ instance = instance_parserCtxt.ctxtReadFile(filePath, None, libxml2.XML_PARSE_NOWARNING)
+ except:
+ # Suppress exceptions.
+ pass
+ finally:
+ del instance_parserCtxt
+ self.debugMsg("after loading instance")
+ if instance is None:
+ self.debugMsg("instance is None")
+ self.failCritical("Failed to parse the instance for unknown reasons.")
+ return
+ else:
+ try:
+ #
+ # Validate the instance.
+ #
+
+ validation_Ctxt = schema.schemaNewValidCtxt()
+ #validation_Ctxt = libxml2.schemaNewValidCtxt(None)
+ if (validation_Ctxt is None):
+ self.failCritical("Could not create the validation context.")
+ return
+ try:
+ self.debugMsg("validating instance")
+ instance_Err = validation_Ctxt.schemaValidateDoc(instance)
+ self.debugMsg("after instance validation")
+ self.debugMsg("instance-err: %d" % instance_Err)
+ if (instance_Err != 0 and self.instance_Val == 1) or (instance_Err == 0 and self.instance_Val == 0):
+ self.debugMsg("instance result is BAD")
+ if (instance_Err != 0):
+ self.fail(msgInstanceNotValidButShould)
+ else:
+ self.fail(msgInstanceValidButShouldNot)
+
+ else:
+ self.debugMsg("instance result is OK")
+ finally:
+ del validation_Ctxt
+ finally:
+ instance.freeDoc()
+
+
+ def run(self):
+ """Runs a test."""
+ global options
+
+ # os.path.join(options.baseDir, self.test_Folder, self.schema_Folder, self.schema_File)
+ filePath = "%s/%s/%s/%s" % (options.baseDir, self.test_Folder, self.schema_Folder, self.schema_File)
+ schema = None
+ try:
+ schema = self.processSchema(filePath)
+ try:
+ if self.instance_Exists and (schema is not None) and (not self.failed):
+ filePath = "%s/%s/%s/%s" % (options.baseDir, self.test_Folder, self.instance_Folder, self.instance_File)
+ self.processInstance(filePath, schema)
+ finally:
+ if schema is not None:
+ del schema
+
+ except (Exception, libxml2.parserError, libxml2.treeError), e:
+ self.failExcept(e)
+
+
+####################
+# Test runner class.
+#
+
+class MSTestRunner:
+
+ CNT_TOTAL = 0
+ CNT_RAN = 1
+ CNT_SUCCEEDED = 2
+ CNT_FAILED = 3
+ CNT_UNIMPLEMENTED = 4
+ CNT_INTERNAL = 5
+ CNT_BAD = 6
+ CNT_EXCEPTED = 7
+ CNT_MEMLEAK = 8
+
+ def __init__(self):
+ self.logFile = None
+ self.counters = self.createCounters()
+ self.testList = []
+ self.combinesRan = {}
+
+ def createCounters(self):
+ counters = {self.CNT_TOTAL:0, self.CNT_RAN:0, self.CNT_SUCCEEDED:0,
+ self.CNT_FAILED:0, self.CNT_UNIMPLEMENTED:0, self.CNT_INTERNAL:0, self.CNT_BAD:0,
+ self.CNT_EXCEPTED:0, self.CNT_MEMLEAK:0}
+
+ return counters
+
+ def addTest(self, test):
+ self.testList.append(test)
+
+ def updateCounters(self, test, counters):
+ if test.memLeak != 0:
+ counters[self.CNT_MEMLEAK] += 1
+ if not test.failed:
+ counters[self.CNT_SUCCEEDED] +=1
+ if test.failed:
+ counters[self.CNT_FAILED] += 1
+ if test.bad:
+ counters[self.CNT_BAD] += 1
+ if test.unimplemented:
+ counters[self.CNT_UNIMPLEMENTED] += 1
+ if test.internalErr:
+ counters[self.CNT_INTERNAL] += 1
+ if test.excepted:
+ counters[self.CNT_EXCEPTED] += 1
+ return counters
+
+ def displayResults(self, out, all, combName, counters):
+ out.write("\n")
+ if all:
+ if options.combines is not None:
+ out.write("combine(s): %s\n" % str(options.combines))
+ elif combName is not None:
+ out.write("combine : %s\n" % combName)
+ out.write(" total : %d\n" % counters[self.CNT_TOTAL])
+ if all or options.combines is not None:
+ out.write(" ran : %d\n" % counters[self.CNT_RAN])
+ # out.write(" succeeded : %d\n" % counters[self.CNT_SUCCEEDED])
+ if counters[self.CNT_FAILED] > 0:
+ out.write(" failed : %d\n" % counters[self.CNT_FAILED])
+ out.write(" -> internal : %d\n" % counters[self.CNT_INTERNAL])
+ out.write(" -> unimpl. : %d\n" % counters[self.CNT_UNIMPLEMENTED])
+ out.write(" -> bad : %d\n" % counters[self.CNT_BAD])
+ out.write(" -> exceptions : %d\n" % counters[self.CNT_EXCEPTED])
+ if counters[self.CNT_MEMLEAK] > 0:
+ out.write(" memory leaks : %d\n" % counters[self.CNT_MEMLEAK])
+
+ def displayShortResults(self, out, all, combName, counters):
+ out.write("Ran %d of %d tests:" % (counters[self.CNT_RAN],
+ counters[self.CNT_TOTAL]))
+ # out.write(" succeeded : %d\n" % counters[self.CNT_SUCCEEDED])
+ if counters[self.CNT_FAILED] > 0 or counters[self.CNT_MEMLEAK] > 0:
+ out.write(" %d failed" % (counters[self.CNT_FAILED]))
+ if counters[self.CNT_INTERNAL] > 0:
+ out.write(" %d internal" % (counters[self.CNT_INTERNAL]))
+ if counters[self.CNT_UNIMPLEMENTED] > 0:
+ out.write(" %d unimplemented" % (counters[self.CNT_UNIMPLEMENTED]))
+ if counters[self.CNT_BAD] > 0:
+ out.write(" %d bad" % (counters[self.CNT_BAD]))
+ if counters[self.CNT_EXCEPTED] > 0:
+ out.write(" %d exception" % (counters[self.CNT_EXCEPTED]))
+ if counters[self.CNT_MEMLEAK] > 0:
+ out.write(" %d leaks" % (counters[self.CNT_MEMLEAK]))
+ out.write("\n")
+ else:
+ out.write(" all passed\n")
+
+ def reportCombine(self, combName):
+ global options
+
+ counters = self.createCounters()
+ #
+ # Compute evaluation counters.
+ #
+ for test in self.combinesRan[combName]:
+ counters[self.CNT_TOTAL] += 1
+ counters[self.CNT_RAN] += 1
+ counters = self.updateCounters(test, counters)
+ if options.reportErrCombines and (counters[self.CNT_FAILED] == 0) and (counters[self.CNT_MEMLEAK] == 0):
+ pass
+ else:
+ if not options.disableLog:
+ self.displayResults(self.logFile, False, combName, counters)
+ self.displayResults(sys.stdout, False, combName, counters)
+
+ def displayTestLog(self, test):
+ sys.stdout.writelines(test.log)
+ sys.stdout.write("~~~~~~~~~~\n")
+
+ def reportTest(self, test):
+ global options
+
+ error = test.failed or test.memLeak != 0
+ #
+ # Only erroneous tests will be written to the log,
+ # except @verbose is switched on.
+ #
+ if not options.disableLog and (options.verbose or error):
+ self.logFile.writelines(test.log)
+ self.logFile.write("~~~~~~~~~~\n")
+ #
+ # if not @silent, only erroneous tests will be
+ # written to stdout, except @verbose is switched on.
+ #
+ if not options.silent:
+ if options.reportInternalErrOnly and test.internalErr:
+ self.displayTestLog(test)
+ if options.reportMemLeakErrOnly and test.memLeak != 0:
+ self.displayTestLog(test)
+ if (options.verbose or error) and (not options.reportInternalErrOnly) and (not options.reportMemLeakErrOnly):
+ self.displayTestLog(test)
+
+ def addToCombines(self, test):
+ found = False
+ if self.combinesRan.has_key(test.combineName):
+ self.combinesRan[test.combineName].append(test)
+ else:
+ self.combinesRan[test.combineName] = [test]
+
+ def run(self):
+
+ global options
+
+ if options.info:
+ for test in self.testList:
+ self.addToCombines(test)
+ sys.stdout.write("Combines: %d\n" % len(self.combinesRan))
+ sys.stdout.write("%s\n" % self.combinesRan.keys())
+ return
+
+ if not options.disableLog:
+ self.logFile = open(options.logFile, "w")
+ try:
+ for test in self.testList:
+ self.counters[self.CNT_TOTAL] += 1
+ #
+ # Filter tests.
+ #
+ if options.singleTest is not None and options.singleTest != "":
+ if (test.name != options.singleTest):
+ continue
+ elif options.combines is not None:
+ if not options.combines.__contains__(test.combineName):
+ continue
+ if options.maxTestCount != -1 and self.counters[self.CNT_RAN] >= options.maxTestCount:
+ break
+ self.counters[self.CNT_RAN] += 1
+ #
+ # Run the thing, dammit.
+ #
+ try:
+ test.setUp()
+ try:
+ test.run()
+ finally:
+ test.tearDown()
+ finally:
+ #
+ # Evaluate.
+ #
+ test.finalize()
+ self.reportTest(test)
+ if options.reportCombines or options.reportErrCombines:
+ self.addToCombines(test)
+ self.counters = self.updateCounters(test, self.counters)
+ finally:
+ if options.reportCombines or options.reportErrCombines:
+ #
+ # Build a report for every single combine.
+ #
+ # TODO: How to sort a dict?
+ #
+ self.combinesRan.keys().sort(None)
+ for key in self.combinesRan.keys():
+ self.reportCombine(key)
+
+ #
+ # Display the final report.
+ #
+ if options.silent:
+ self.displayShortResults(sys.stdout, True, None, self.counters)
+ else:
+ sys.stdout.write("===========================\n")
+ self.displayResults(sys.stdout, True, None, self.counters)
|